diff --git a/pandora_agents/win32/ChangeLog b/pandora_agents/win32/ChangeLog index 1e08a5f3f1..e38fde1f82 100644 --- a/pandora_agents/win32/ChangeLog +++ b/pandora_agents/win32/ChangeLog @@ -1,3 +1,7 @@ +2013-02-21 Ramon Novoa + + * modules/pandora_module_logevent.cc: Add the timestamp to the log. + 2013-02-20 Ramon Novoa * modules/pandora_module_logevent.cc: Retrieve extra event information diff --git a/pandora_agents/win32/modules/pandora_module_logevent.cc b/pandora_agents/win32/modules/pandora_module_logevent.cc index b5157a56b9..ef049faabe 100755 --- a/pandora_agents/win32/modules/pandora_module_logevent.cc +++ b/pandora_agents/win32/modules/pandora_module_logevent.cc @@ -266,6 +266,11 @@ Pandora_Module_Logevent::getLogEvents (list &event_list, unsigned char d // Print additional information for log modules if (this->getModuleType() == TYPE_LOG) { + + // Add the timestamp to the log (the previous timestamp will be stripped) + event << "[Timestamp: "; + event << timestamp; + event << "]"; // Retrieve the event id event << "[ID: ";