From 5ca3ff23d7c8b15e032e7ca481610b0f85248110 Mon Sep 17 00:00:00 2001 From: Jason Denney Date: Wed, 16 Mar 2016 21:19:26 -0700 Subject: [PATCH] Specify Logger.new shift_size default --- lib/logger.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/logger.rb b/lib/logger.rb index a2de964..2358126 100644 --- a/lib/logger.rb +++ b/lib/logger.rb @@ -302,7 +302,8 @@ class Logger # Number of old log files to keep, *or* frequency of rotation (+daily+, # +weekly+ or +monthly+). Defaults to +0+ (disabled). # +shift_size+:: - # Maximum logfile size (only applies when +shift_age+ is a number). + # Maximum logfile size in bytes (only applies when +shift_age+ is a number). + # Defaults to +1048576+ (1MB). # # === Description # -- 2.8.4 (Apple Git-73)