]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Use new logging API everywhere 1146/head
authorAndrew Lewis <nerf@judo.za.org>
Thu, 17 Nov 2016 10:46:02 +0000 (12:46 +0200)
committerAndrew Lewis <nerf@judo.za.org>
Thu, 17 Nov 2016 10:46:02 +0000 (12:46 +0200)
src/plugins/lua/asn.lua
src/plugins/lua/fann_classifier.lua
src/plugins/lua/fann_redis.lua
src/plugins/lua/greylist.lua
src/plugins/lua/ip_score.lua
src/plugins/lua/metadata_exporter.lua
src/plugins/lua/metric_exporter.lua
src/plugins/lua/mx_check.lua
src/plugins/lua/ratelimit.lua

index 9cb109fbf40b13fea881a7db624cb78f7c604d45..e3945842cc26b4e099ce2b70f5d2a6141c6bc853 100644 (file)
@@ -86,7 +86,7 @@ local function asn_check(task)
             redis_key, tostring(options['expire'])
           })
         else
-          rspamd_logger.err(task, 'got error while connecting to redis')
+          rspamd_logger.errx(task, 'got error while connecting to redis')
         end
       end
     end
@@ -122,7 +122,7 @@ local function asn_check(task)
           {key, tostring(options.expire)} -- arguments
         )
         if not ret then
-          rspamd_logger.err('got error connecting to redis')
+          rspamd_logger.errx(task, 'got error connecting to redis')
         end
       end
     end
index 94261839b15b609d1b203c3c05d058890bd1538a..c4110981d7ce2746f0db92af55f3b3796a9025d5 100644 (file)
@@ -89,7 +89,7 @@ local function maybe_load_fann(task, continue_cb, call_if_fail)
       {key, 'version', 'data', 'spam', 'ham'} -- arguments
     )
     if not ret then
-      rspamd_logger.err(task, 'got error connecting to redis')
+      rspamd_logger.errx(task, 'got error connecting to redis')
     end
   end
 
@@ -120,7 +120,7 @@ local function maybe_load_fann(task, continue_cb, call_if_fail)
       {key, 'version'} -- arguments
     )
     if not ret then
-      rspamd_logger.err(task, 'got error connecting to redis')
+      rspamd_logger.errx(task, 'got error connecting to redis')
     end
   end
 
@@ -218,7 +218,7 @@ local function save_fann(task, is_spam)
       conn:add_cmd('HINCRBY', {key, 'ham', 1})
     end
   else
-    rspamd_logger.err(task, 'got error connecting to redis')
+    rspamd_logger.errx(task, 'got error connecting to redis')
   end
 end
 
index cc24051d06bc158c3ba0d55aaefa018807f1726b..fffb5dcd9686b0043f67afa01df4e0b6721489de 100644 (file)
@@ -326,7 +326,7 @@ local function load_or_invalidate_fann(data, id, ev_base)
       if _err then
         rspamd_logger.errx(rspamd_config, 'cannot invalidate ANN %s from redis: %s', id, _err)
       elseif type(_data) == 'string' then
-        rspamd_logger.info(rspamd_config, 'invalidated ANN %s from redis: %s', id, _err)
+        rspamd_logger.infox(rspamd_config, 'invalidated ANN %s from redis: %s', id, _err)
         fanns[id].version = 0
       end
     end
index 7a84e46f39057e69c1e352624a0dcb470edd94b8..3d946fcf5d53cbe3f9c728dd32ce6a58e9cb2400 100644 (file)
@@ -221,7 +221,7 @@ local function greylist_check(task)
     {body_key, meta_key} -- arguments
   )
   if not ret then
-    rspamd_logger.err(task, 'cannot make redis request to check results')
+    rspamd_logger.errx(task, 'cannot make redis request to check results')
   end
 end
 
@@ -296,7 +296,7 @@ local function greylist_set(task)
         meta_key, tostring(settings['expire'])
       })
     else
-      rspamd_logger.err(task, 'got error while connecting to redis')
+      rspamd_logger.errx(task, 'got error while connecting to redis')
     end
   elseif do_greylisting or do_greylisting_required then
     local t = tostring(math.floor(rspamd_util.get_time()))
@@ -320,7 +320,7 @@ local function greylist_set(task)
         meta_key, tostring(settings['expire']), t
       })
     else
-      rspamd_logger.err(task, 'got error while connecting to redis')
+      rspamd_logger.errx(task, 'got error while connecting to redis')
     end
   else
     if action ~= 'no action' and action ~= 'reject' then
index 205fc9627ea78ffb6cae52322303003b80e80320..b894cfbe00ed440a6de62830609cfd9472f3dfa5 100644 (file)
@@ -166,7 +166,7 @@ local ip_score_set = function(task)
     redis_args -- arguments
   )
   if not ret then
-    rspamd_logger.err(task, 'error connecting to redis')
+    rspamd_logger.errx(task, 'error connecting to redis')
     return
   end
 
@@ -319,7 +319,7 @@ local ip_score_check = function(task)
       args -- arguments
     )
     if not ret then
-      rspamd_logger.err(task, 'error connecting to redis')
+      rspamd_logger.errx(task, 'error connecting to redis')
     end
   end
 end
index e95478b48ca36185307dd0c0c8ff397b19a85c19..6c77714a926e64c2a7a98299aaa7862cf6500aca 100644 (file)
@@ -90,7 +90,7 @@ local function metadata_exporter(task)
       {channel, data} -- arguments
     )
     if not ret then
-      rspamd_logger.err(task, 'error connecting to redis')
+      rspamd_logger.errx(task, 'error connecting to redis')
     end
   end
   if url then
index 85cace8ea0b07b63a34fadb933216e924e575518..9608fb83faa8ebef726f73af275d8787b9fa4a15 100644 (file)
@@ -53,7 +53,7 @@ local valid_metrics = {
 
 local function validate_metrics(settings_metrics)
   if type(settings_metrics) ~= 'table' or #settings_metrics == 0 then
-    logger.err('No metrics specified for collection')
+    logger.errx(rspamd_config, 'No metrics specified for collection')
     return false
   end
   for _, v in ipairs(settings_metrics) do
@@ -144,7 +144,7 @@ local backends = {
 local function configure_metric_exporter()
   local opts = rspamd_config:get_all_opt('metric_exporter')
   if not backends[opts['backend']] then
-    logger.err('Backend is invalid or unspecified')
+    logger.errx(rspamd_config, 'Backend is invalid or unspecified')
     return false
   end
   for k, v in pairs(opts) do
index c81fd0dd6f978bf483d46f3fa21917db57d27980..ca966909cf4e1978dcc9a75e749d87df320bedd2 100644 (file)
@@ -86,7 +86,7 @@ local function mx_check(task)
           {key, tostring(settings.expire_novalid), '0'} -- arguments
         )
         if not ret then
-          rspamd_logger.err(task, 'got error connecting to redis')
+          rspamd_logger.errx(task, 'got error connecting to redis')
         end
       else
         local valid_mx = {}
@@ -103,7 +103,7 @@ local function mx_check(task)
           {key, tostring(settings.expire), table.concat(valid_mx, ';')} -- arguments
         )
         if not ret then
-          rspamd_logger.err(task, 'error connecting to redis')
+          rspamd_logger.errx(task, 'error connecting to redis')
         end
       end
     end
index 1a7bdf222ddc6eb17e8301c12093e4ebeb6dc95a..a05ebc2e9d8fb39c53de2e388978e65722a81fe2 100644 (file)
@@ -304,7 +304,7 @@ local function check_limits(task, args)
     fun.totable(fun.map(function(l) return l[2] end, args)) -- arguments
   )
   if not ret then
-    rspamd_logger.err(task, 'got error connecting to redis')
+    rspamd_logger.errx(task, 'got error connecting to redis')
   end
 end
 
@@ -370,7 +370,7 @@ local function set_limits(task, args)
           conn:add_cmd('setex', v)
         end, fun.drop_n(1, values))
       else
-        rspamd_logger.err(task, 'got error while connecting to redis')
+        rspamd_logger.errx(task, 'got error while connecting to redis')
       end
     end
   end
@@ -385,7 +385,7 @@ local function set_limits(task, args)
     fun.totable(fun.map(function(l) return l[2] end, args)) -- arguments
   )
   if not ret then
-    rspamd_logger.err(task, 'got error connecting to redis')
+    rspamd_logger.errx(task, 'got error connecting to redis')
   end
 end