Software /
code /
clix
Comparison
clix.lua @ 43:1ec64b321834
clix.lua: Filter all log messages except those of the 'error' level unless -v is given
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 15 Sep 2010 16:53:32 +0100 |
parent | 42:4f4fe532a889 |
child | 45:36f5bf718d3c |
comparison
equal
deleted
inserted
replaced
42:4f4fe532a889 | 43:1ec64b321834 |
---|---|
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_logger(opts.verbose and verse.logger() or function () end); | 61 verse.set_logger(opts.verbose and verse.logger() or verse.filter_log({"error"}, verse.logger())); |
62 local conn = verse.new(verse.logger()); | 62 local conn = verse.new(verse.logger()); |
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.log.debug = opts.verbose; | 66 conn.log.debug = opts.verbose; |