log files with timestamp
This commit is contained in:
parent
36d9cdef22
commit
5cea787672
10
scripts/da
10
scripts/da
|
@ -1,10 +1,14 @@
|
||||||
#!/usr/bin/perl -T
|
#!/usr/bin/perl -T
|
||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
use Simba::DA;
|
|
||||||
use lib 'blib/lib';
|
|
||||||
|
|
||||||
open(my $log, '>>', '/var/log/simba/da.log');
|
use POSIX qw(strftime);
|
||||||
|
|
||||||
|
use lib 'blib/lib';
|
||||||
|
use Simba::DA;
|
||||||
|
|
||||||
|
my $now = strftime('%Y-%m-%dT%H:%M:%S', localtime());
|
||||||
|
open(my $log, '>>', '/var/log/simba/da.log.' . $now);
|
||||||
$log->autoflush(1);
|
$log->autoflush(1);
|
||||||
my $da = Simba::DA->new({fh_log => $log});
|
my $da = Simba::DA->new({fh_log => $log});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue