Changed timestamp on reported events to include date in addition to time.
This commit is contained in:
parent
a30b513b8f
commit
57b6c729ee
|
@ -112,7 +112,7 @@ class Reporter
|
||||||
time_t now;
|
time_t now;
|
||||||
|
|
||||||
now = time(NULL);
|
now = time(NULL);
|
||||||
strftime( str, 32, "%H:%M:%S: ", localtime(&now) );
|
strftime( str, 32, "%d-%b-%Y %H:%M:%S ", localtime(&now) );
|
||||||
(*(Reporter::os)) << str;
|
(*(Reporter::os)) << str;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -309,6 +309,9 @@ class Reporter
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 1.8 2005/04/03 05:14:07 jbebel
|
||||||
|
Changed timestamp on reported events to include date in addition to time.
|
||||||
|
|
||||||
Revision 1.7 2004/02/15 12:06:30 darkeye
|
Revision 1.7 2004/02/15 12:06:30 darkeye
|
||||||
added ALSA support, thanks to Christian Forster
|
added ALSA support, thanks to Christian Forster
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue