You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 13, 2019. It is now read-only.
Looks like when the logging system was upgraded, the ability to set the default log level was lost. It would be handy to be able to set the default log level (if you wanted it to be quiet for instance, to :fatal) from within the configuration block.
test_master_bot = Cinch::Bot.new do
configure do |c|
c.nick = "testc"
c.server = "127.0.0.1"
c.channels = [ENV['irc_channel']]
# c.verbose = false # lost
c.log_level = :fatal
end
end
The text was updated successfully, but these errors were encountered:
Looks like when the logging system was upgraded, the ability to set the default log level was lost. It would be handy to be able to set the default log level (if you wanted it to be quiet for instance, to
:fatal
) from within the configuration block.The text was updated successfully, but these errors were encountered: