From 077d3f490afe57c7711d0949349a552bb16462fc Mon Sep 17 00:00:00 2001 From: Adam Lassek Date: Mon, 13 Feb 2023 15:05:51 -0600 Subject: [PATCH] [Doc] default_logger expects a callable interface Current wording makes it sound like it directly accepts a Logger; in reality it must be a callable object that returns a Logger. --- docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 372bd1ba..175968c0 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -59,10 +59,10 @@ end ### default_logger -**Default** `Logger.new(STDERR)` +**Default** `lambda { Logger.new(STDERR) }` What logger to use for printing debugging and informational messages during -operation. +operation. Expects a callable object that returns a logger interface. ### logger_level