2007-08-24 Esteban Sanchez <estebans@artica.es>
* pandora.cc: Changed log and debug file to have the same name that other operative system agents. * bin/PandoraAgent.exe: Updated to last commit. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@618 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
bc3799534c
commit
dac3af67cc
|
@ -1,3 +1,10 @@
|
|||
2007-08-24 Esteban Sanchez <estebans@artica.es>
|
||||
|
||||
* pandora.cc: Changed log and debug file to have the same name that
|
||||
other operative system agents.
|
||||
|
||||
* bin/PandoraAgent.exe: Updated to last commit.
|
||||
|
||||
2007-08-24 Esteban Sanchez <estebans@artica.es>
|
||||
|
||||
* win32/windows/pandora_wmi.cc: Fixed a bug when reading free space
|
||||
|
|
Binary file not shown.
|
@ -138,7 +138,7 @@ Pandora::pandoraLog (char *format, ...) {
|
|||
vsprintf (msg, format, args);
|
||||
va_end (args);
|
||||
|
||||
pandoraWriteLog ("pandora-log.log", (char *) msg);
|
||||
pandoraWriteLog ("pandora_agent.log", (char *) msg);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -160,7 +160,7 @@ Pandora::pandoraDebug (char *format, ...) {
|
|||
vsprintf (msg, format, args);
|
||||
va_end (args);
|
||||
|
||||
pandoraWriteLog ("pandora-debug.dbg", (char *) msg);
|
||||
pandoraWriteLog ("pandora_agent.err", (char *) msg);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue