Fix log file naming format
This commit is contained in:
parent
dd78dccab2
commit
3e88913042
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ class FileLogging implements LogHandlerInterface
|
|||
}
|
||||
}
|
||||
|
||||
$logging_file = $logging_directory . DIRECTORY_SEPARATOR . Utilities::sanitizeFileName($application->getApplicationName()) . date('Y-m-d') . '.log';
|
||||
$logging_file = $logging_directory . DIRECTORY_SEPARATOR . Utilities::sanitizeFileName($application->getApplicationName()) . '-' . date('Y-m-d') . '.log';
|
||||
|
||||
if(!file_exists($logging_file))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue