From 3866c8158801b84ef02861ae6dcb662e0ed3ef8c Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Tue, 7 Apr 2020 13:26:09 +0000 Subject: [PATCH] Use the updated Logger class in spec --- spec/spec_helper.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/spec_helper.cr b/spec/spec_helper.cr index fa4409b..7755d02 100644 --- a/spec/spec_helper.cr +++ b/spec/spec_helper.cr @@ -37,7 +37,7 @@ end def with_default_config temp_config = get_tempfile "mango-test-config" config = Config.load temp_config.path - logger = MLogger.new config + logger = Logger.new config.log_level yield config, logger, temp_config.path temp_config.delete end