Compare commits
2 Commits
master
...
dateformat
Author | SHA1 | Date | |
---|---|---|---|
64b28349c9 | |||
c15a4b6030 |
@ -158,7 +158,7 @@ sub prepareLogFile {
|
||||
my $aChannelName = $_[2];
|
||||
|
||||
if(exists($aLogFiles->{$aChannelName})) {
|
||||
my $filename = localtime->dmy("-").".txt";
|
||||
my $filename = localtime->ymd("-").".txt";
|
||||
if($filename ne $aLogFiles->{$aChannelName}{"filename"}) {
|
||||
close($aLogFiles->{$aChannelName}{"file"});
|
||||
my $outputFileFolder = $configuration::logFolder."/".$aServerName."/".$aChannelName;
|
||||
@ -180,12 +180,12 @@ sub prepareLogFile {
|
||||
if(!(-e $outputFileFolder)) {
|
||||
File::Path::make_path($outputFileFolder);
|
||||
}
|
||||
my $outputFilePath = $outputFileFolder."/".localtime->dmy("-").".txt";
|
||||
my $outputFilePath = $outputFileFolder."/".localtime->ymd("-").".txt";
|
||||
open(my $file, ">>", $outputFilePath);
|
||||
if($file) {
|
||||
printf("[info] Outputting channel '%s' at '%s' to '%s'\n", $aChannelName, $aServerName, $outputFilePath);
|
||||
$aLogFiles->{$aChannelName}{"file"} = $file;
|
||||
$aLogFiles->{$aChannelName}{"filename"} = localtime->dmy("-").".txt";
|
||||
$aLogFiles->{$aChannelName}{"filename"} = localtime->ymd("-").".txt";
|
||||
$aLogFiles->{$aChannelName}{"names"} = [];
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user