about summary refs log tree commit diff
path: root/app/workers/application_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/application_worker.rb')
-rw-r--r--app/workers/application_worker.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/workers/application_worker.rb b/app/workers/application_worker.rb
new file mode 100644
index 000000000..f2d7c1062
--- /dev/null
+++ b/app/workers/application_worker.rb
@@ -0,0 +1,5 @@
+class ApplicationWorker
+  def info(message)
+    Rails.logger.info("#{self.class.name} - #{message}")
+  end
+end