Add micro timestamp in Logger.cc ? (to syslog)

I use bro with syslog event,

I would like add micro timestamp in Logger.cc to syslog event,

but I don't say,

possible help me ?

in hack this file / function in 09a3 please.

The general way to do this is to search the source for here what's going
on is done. In this case, a search on "syslog" will locate the code in
Logger.cc that's doing this.

    Vern

Thanks answers guru,

void Logger::Log(const char* msg)
         {
         int has_timestamp = fabs(atof(msg) - network_time) <= 30.0;

         if ( enabled )
                 {
// const char* sub_msg = msg;
// if ( has_timestamp )
// {
                         // Don't include the timestamp in the logging,
                         // as it gets tacked on by syslog anyway.
// sub_msg = strchr(sub_msg, ' ');
// if ( sub_msg )
// ++sub_msg; // skip over ' '
// else
// sub_msg = msg;
// }

                 syslog(LOG_NOTICE, "%s", sub_msg);
                 }
...

but syslog not contains micro timestamp,

possible help me please ?

Regards

Rmkml@Wanadoo.fr