We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d040d56 commit a900b7aCopy full SHA for a900b7a
src/functions/logFileUtils.js
@@ -5,7 +5,7 @@ const path = require('path');
5
6
function generateLogFileName() {
7
const date = new Date();
8
- return `webgfa-${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}.log`;
+ return `webgfa-${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}-${date.getHours()}-${date.getMinutes()}.log`;
9
}
10
function getLogFileName(file) {
11
if (!file) return null;
0 commit comments