Log profile save action into console window, not log file

This commit is contained in:
Dev 2023-10-30 15:14:26 +00:00
parent a75acdf9ce
commit 1c18282cfe

View File

@ -210,7 +210,7 @@ export class SaveServer
this.saveMd5[sessionID] = String(fmd5);
// save profile to disk
this.vfs.writeFile(filePath, jsonProfile);
this.logger.info(this.localisationService.getText("profile_saved", sessionID));
this.logger.debug(this.localisationService.getText("profile_saved", sessionID), true);
}
}