Revision 278523a4
Von Moritz Bunkus vor mehr als 10 Jahren hinzugefügt
SL/LXDebug.pm | ||
---|---|---|
260 | 260 |
sub _write { |
261 | 261 |
no warnings; |
262 | 262 |
my ($self, $prefix, $message) = @_; |
263 |
my $date = strftime("%Y-%m-%d %H:%M:%S $$ [" . getppid() . "] ${prefix}: ", localtime(time())); |
|
263 |
my @now = gettimeofday(); |
|
264 |
my $date = strftime("%Y-%m-%d %H:%M:%S." . sprintf('%03d', int($now[1] / 1000)) . " $$ [" . getppid() . "] ${prefix}: ", localtime($now[0])); |
|
264 | 265 |
local *FILE; |
265 | 266 |
|
266 | 267 |
chomp($message); |
Auch abrufbar als: Unified diff
LXDebug: Zeitstempel mit Millisekunden-Auflösung ausgeben