Async functions #168

Closed
Sirherobrine23 wants to merge 14 commits from AsyncFunctions into main
9 changed files with 116 additions and 118 deletions
Showing only changes of commit 9e93bbbc92 - Show all commits

View File

@ -99,7 +99,7 @@ function start() {
}
// Log file
const LogFile = join(GetPaths("log"), `${GetPlatform()}_${new Date().toString()}_Bds_log.log`);
const LogFile = path.join(GetPaths("log"), `${GetPlatform()}_${new Date().toString()}_Bds_log.log`);
const LatestLog_Path = path.join(GetPaths("log"), "latest.log");
const LogSaveFunction = data => {
fs.appendFileSync(LogFile, data);