ISEPOS-2280 Adjusted fallback log name

This commit is contained in:
2024-10-15 16:50:30 +02:00
parent 13e4fa808f
commit 7ba8869df0
3 changed files with 6 additions and 6 deletions

View File

@@ -65,7 +65,7 @@ classdef base_logger < handle
function this = base_logger()
logFileName = getenv("APP_LOG_FILE");
if isempty(logFileName)
logFileName = 'fallbackPathApplication.log';
logFileName = 'base-logger-log.log';
end
this.fid = fopen(logFileName, 'a');
if this.fid == -1