We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6068b0 commit c1019eeCopy full SHA for c1019ee
1 file changed
index.js
@@ -90,6 +90,15 @@ async function main() {
90
91
process.env.EVOLVE_LOOP = 'true';
92
process.env.EVOLVE_BRIDGE = 'false';
93
+
94
+ const originalLog = console.log;
95
+ const originalWarn = console.warn;
96
+ const originalError = console.error;
97
+ function ts() { return '[' + new Date().toISOString() + ']'; }
98
+ console.log = function() { originalLog.apply(console, [ts(), ...arguments]); };
99
+ console.warn = function() { originalWarn.apply(console, [ts(), ...arguments]); };
100
+ console.error = function() { originalError.apply(console, [ts(), ...arguments]); };
101
102
console.log('Loop mode enabled (internal daemon).');
103
104
const { getEvolutionDir } = require('./src/gep/paths');
0 commit comments