logFileAction.cc
Go to the documentation of this file.
2 // vim: set sw=2:
4 
5 #include <cstring>
6 #include <ctime>
7 
8 void
10 {
11  time_t t = time(0);
12  char ts[] = "dd-Mon-yyyy hh:mm:ss TZN ";
13  struct tm localtm;
14  strftime(
15  ts, strlen(ts) + 1, "%d-%b-%Y %H:%M:%S %Z", localtime_r(&t, &localtm));
16  mf::LogAbsolute("fileAction") << ts << " " << msg << '\"' << file << '\"';
17 }
void msg(const char *fmt,...)
Definition: message.cpp:107
std::string string
Definition: nybbler.cc:12
void logFileAction(const char *msg, std::string const &file)
Definition: logFileAction.cc:9
tm
Definition: demo.py:21
MaybeLogger_< ELseverityLevel::ELsev_severe, true > LogAbsolute