From 33dfb15aff44565c38e296395a4d06a6b4f9f04f Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 19 Mar 2013 18:23:07 +0000 Subject: [PATCH] 2013-03-19 Ramon Novoa * bin/pandora_server: Moved a log message to verbosity 10. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7869 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_server/ChangeLog | 4 ++++ pandora_server/bin/pandora_server | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index c50957c0b0..fce828bf12 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,7 @@ +2013-03-19 Ramon Novoa + + * bin/pandora_server: Moved a log message to verbosity 10. + 2013-03-19 Ramon Novoa * bin/pandora_server: Style fix. diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server index d62286f297..9c33cd0a9f 100755 --- a/pandora_server/bin/pandora_server +++ b/pandora_server/bin/pandora_server @@ -313,7 +313,7 @@ while (1) { # Update module status and fired alert counts my @agents = get_db_rows ($DBH, 'SELECT id_agente, nombre, update_module_count, update_alert_count FROM tagente WHERE disabled = 0 AND (update_module_count=1 OR update_alert_count=1)'); foreach my $agent (@agents) { - print_message (\%Config, " [*] Updating module status and alert fired counts for agent " . $agent->{'nombre'}, 1); + print_message (\%Config, " [*] Updating module status and alert fired counts for agent " . $agent->{'nombre'}, 10); if ($agent->{'update_module_count'} == 1) { pandora_update_agent_module_count ($DBH, $agent->{'id_agente'});