2006-11-21 Esteban Sanchez <estebans@artica.es>

* pandora_windows_service.cc: Changed the debug option of the
        configuration to "debug" instead of "pandora_debug".

        * pandora.cc: Removed output to stdout when logging.

        * bin/pandora_agent.conf: Removed " from module_proc example. Fixes
        bug #1600008.

        * bin/PandoraAgent.exe: Updated to new commit.


git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@265 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Esteban Sanchez 2006-11-21 11:32:03 +00:00
parent 030734e1de
commit 0986bdb2f7
5 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,15 @@
2006-11-21 Esteban Sánchez <estebans@artica.es>
* pandora_windows_service.cc: Changed the debug option of the
configuration to "debug" instead of "pandora_debug".
* pandora.cc: Removed output to stdout when logging.
* bin/pandora_agent.conf: Removed " from module_proc example. Fixes
bug #1600008.
* bin/PandoraAgent.exe: Updated to new commit.
2006-11-17 Raúl Mateos <raulofpandora@gmail.com>
* installer/Pandora_FMS_Windows_Agent-1.2-Setup.exe: New installer to

View File

@ -52,7 +52,7 @@ module_end
module_begin
module_name Proc_lsass
module_type generic_proc
module_proc "lsass.exe"
module_proc lsass.exe
module_description LSASS Process
module_end

View File

@ -118,7 +118,6 @@ pandoraWriteLog (string filename, string line) {
fprintf (file, "%s\n", buffer.c_str ());
fclose (file);
}
cout << line << endl;
}
/**

View File

@ -105,7 +105,7 @@ Pandora_Windows_Service::pandora_init () {
/* Get the interval value (in minutes) and set it to the service */
interval = conf->getValue ("interval");
debug = conf->getValue ("pandora_debug");
debug = conf->getValue ("debug");
setPandoraDebug (is_enabled (debug));
if (interval != "") {