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:
parent
030734e1de
commit
0986bdb2f7
|
@ -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
|
||||
|
|
Binary file not shown.
|
@ -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
|
||||
|
||||
|
|
|
@ -118,7 +118,6 @@ pandoraWriteLog (string filename, string line) {
|
|||
fprintf (file, "%s\n", buffer.c_str ());
|
||||
fclose (file);
|
||||
}
|
||||
cout << line << endl;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -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 != "") {
|
||||
|
|
Loading…
Reference in New Issue