summaryrefslogtreecommitdiff
path: root/lib/logger.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/logger.rb')
-rw-r--r--lib/logger.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/logger.rb b/lib/logger.rb
index 34e64ddaf3..848e6b3973 100644
--- a/lib/logger.rb
+++ b/lib/logger.rb
@@ -23,11 +23,11 @@
# file = open('foo.log', File::WRONLY | File::APPEND)
# # To create new (and to remove old) logfile, add File::CREAT like;
# # file = open('foo.log', File::WRONLY | File::APPEND | File::CREAT)
-# logger = Device::Logger.new(file)
+# logger = Logger.new(file)
#
# 4. Create logger which ages logfile automatically. Leave 10 ages and each
# file is about 102400 bytes.
-# logger = Device::Logger.new('foo.log', 10, 102400)
+# logger = Logger.new('foo.log', 10, 102400)
#
# 5. Create logger which ages logfile daily/weekly/monthly automatically.
# logger = Logger.new('foo.log', 'daily')