Software /
code /
clix
Comparison
clix.lua @ 103:82c21f1d6f46
clix.lua: Print logged warnings by default
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 10 Feb 2013 23:58:27 +0100 |
parent | 89:a8b63fbad807 |
child | 104:730fcde562ce |
comparison
equal
deleted
inserted
replaced
102:16cdeb9cd879 | 103:82c21f1d6f46 |
---|---|
56 local account = accounts[opts.account or "default"]; | 56 local account = accounts[opts.account or "default"]; |
57 if not (account and account.jid) then | 57 if not (account and account.jid) then |
58 io.stderr:write("The specified account (", opts.account or "default", ") wasn't found in the config file\n"); | 58 io.stderr:write("The specified account (", opts.account or "default", ") wasn't found in the config file\n"); |
59 return nil; | 59 return nil; |
60 end | 60 end |
61 verse.set_log_handler(io.stderr, opts.quiet and {} or not opts.verbose and {"info", "error"}); | 61 verse.set_log_handler(io.stderr, opts.quiet and {} or not opts.verbose and {"info", "warn", "error"}); |
62 local conn = verse.new(verse.new_logger("clix")); | 62 local conn = verse.new(verse.new_logger("clix")); |
63 for _, plugin in ipairs(plugins or {}) do | 63 for _, plugin in ipairs(plugins or {}) do |
64 conn:add_plugin(plugin); | 64 conn:add_plugin(plugin); |
65 end | 65 end |
66 conn:hook("authentication-failure", function (err) | 66 conn:hook("authentication-failure", function (err) |