examples/loggers.rb in TwP-logging-1.1.2 vs examples/loggers.rb in TwP-logging-1.1.3

- old
+ new

@@ -1,5 +1,6 @@ +# :stopdoc: # # Multiple loggers can be created and each can be configured with it's own # log level and appenders. So one logger can be configured to output debug # messages, and all the others can be left at the info or warn level. This # makes it easier to debug specific portions of your code. @@ -22,5 +23,7 @@ log3.level = 'debug' log1.info "this message will not get logged" log2.info "nor will this message" log3.info "but this message will get logged" + +# :startdoc: