# HG changeset patch # User Kim Alvefur # Date 1360537107 -3600 # Node ID 82c21f1d6f469c62df0376f6984bb86603fa8b15 # Parent 16cdeb9cd879e13d064676638e1c13f7c52f6503 clix.lua: Print logged warnings by default diff -r 16cdeb9cd879 -r 82c21f1d6f46 clix.lua --- a/clix.lua Sun Feb 10 14:09:20 2013 +0100 +++ b/clix.lua Sun Feb 10 23:58:27 2013 +0100 @@ -58,7 +58,7 @@ io.stderr:write("The specified account (", opts.account or "default", ") wasn't found in the config file\n"); return nil; end - verse.set_log_handler(io.stderr, opts.quiet and {} or not opts.verbose and {"info", "error"}); + verse.set_log_handler(io.stderr, opts.quiet and {} or not opts.verbose and {"info", "warn", "error"}); local conn = verse.new(verse.new_logger("clix")); for _, plugin in ipairs(plugins or {}) do conn:add_plugin(plugin);