From 7ded7ad4ec8794a9ebe1036ba018c18670b000d6 Mon Sep 17 00:00:00 2001 From: Andrew Premdas Date: Mon, 11 Feb 2013 23:48:41 +0000 Subject: [PATCH] Fix busted logger - call super so Ciunas properly configures the default rails logger which is now a TaggedLogger. The constructor sets @tags to an empty array --- lib/ciunas/logger.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/ciunas/logger.rb b/lib/ciunas/logger.rb index f9cded9..91f1326 100644 --- a/lib/ciunas/logger.rb +++ b/lib/ciunas/logger.rb @@ -4,6 +4,7 @@ def initialize(app, opts = {}) @app = app @opts = opts @opts[:silenced] ||= [] + super end def call(env) @@ -21,4 +22,4 @@ def call(env) end end end -end +end