@gotza02/sequential-thinking 10000.1.1 → 10000.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dashboard/server.js +1 -1
- package/dist/tools/sports/core/alert-manager.js +6 -6
- package/dist/tools/sports/core/data-quality.js +1 -1
- package/dist/tools/sports/core/historical-analyzer.js +1 -1
- package/dist/tools/sports/core/ml-prediction.js +1 -1
- package/dist/tools/sports/core/realtime-manager.js +1 -1
- package/package.json +1 -1
package/dist/dashboard/server.js
CHANGED
|
@@ -8,7 +8,7 @@ import { getRealtimeManager } from '../tools/sports/core/realtime-manager.js';
|
|
|
8
8
|
import { getAlertManager } from '../tools/sports/core/alert-manager.js';
|
|
9
9
|
// Simple logger fallback
|
|
10
10
|
const logger = {
|
|
11
|
-
info: (...args) => console.
|
|
11
|
+
info: (...args) => console.error('[INFO]', ...args),
|
|
12
12
|
warn: (...args) => console.warn('[WARN]', ...args),
|
|
13
13
|
error: (...args) => console.error('[ERROR]', ...args),
|
|
14
14
|
debug: (...args) => { }
|
|
@@ -6,7 +6,7 @@ import { EventEmitter } from 'events';
|
|
|
6
6
|
import { ALERT_CONFIG } from './constants.js';
|
|
7
7
|
// Simple logger fallback
|
|
8
8
|
const logger = {
|
|
9
|
-
info: (...args) => console.
|
|
9
|
+
info: (...args) => console.error('[INFO]', ...args),
|
|
10
10
|
warn: (...args) => console.warn('[WARN]', ...args),
|
|
11
11
|
error: (...args) => console.error('[ERROR]', ...args),
|
|
12
12
|
debug: (...args) => { }
|
|
@@ -218,11 +218,11 @@ export class AlertManager extends EventEmitter {
|
|
|
218
218
|
logger.info(`[AlertManager] Would send email to ${channel.config.to}: ${message.title}`);
|
|
219
219
|
break;
|
|
220
220
|
case 'console':
|
|
221
|
-
console.
|
|
222
|
-
console.
|
|
223
|
-
console.
|
|
224
|
-
console.
|
|
225
|
-
console.
|
|
221
|
+
console.error(`\n${'='.repeat(50)}`);
|
|
222
|
+
console.error(`ALERT: ${message.title}`);
|
|
223
|
+
console.error(`${'='.repeat(50)}`);
|
|
224
|
+
console.error(message.body);
|
|
225
|
+
console.error(`${'='.repeat(50)}\n`);
|
|
226
226
|
break;
|
|
227
227
|
}
|
|
228
228
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
// Simple logger fallback
|
|
5
5
|
const logger = {
|
|
6
|
-
info: (...args) => console.
|
|
6
|
+
info: (...args) => console.error('[INFO]', ...args),
|
|
7
7
|
warn: (...args) => console.warn('[WARN]', ...args),
|
|
8
8
|
error: (...args) => console.error('[ERROR]', ...args),
|
|
9
9
|
debug: (...args) => { }
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
// Simple logger fallback
|
|
5
5
|
const logger = {
|
|
6
|
-
info: (...args) => console.
|
|
6
|
+
info: (...args) => console.error('[INFO]', ...args),
|
|
7
7
|
warn: (...args) => console.warn('[WARN]', ...args),
|
|
8
8
|
error: (...args) => console.error('[ERROR]', ...args),
|
|
9
9
|
debug: (...args) => { }
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
import { ML_CONFIG } from './constants.js';
|
|
5
5
|
// Simple logger fallback
|
|
6
6
|
const logger = {
|
|
7
|
-
info: (...args) => console.
|
|
7
|
+
info: (...args) => console.error('[INFO]', ...args),
|
|
8
8
|
warn: (...args) => console.warn('[WARN]', ...args),
|
|
9
9
|
error: (...args) => console.error('[ERROR]', ...args),
|
|
10
10
|
debug: (...args) => { }
|
|
@@ -7,7 +7,7 @@ import { CacheService } from './cache.js';
|
|
|
7
7
|
import { REALTIME_CONFIG, CACHE_CONFIG } from './constants.js';
|
|
8
8
|
// Simple logger fallback
|
|
9
9
|
const logger = {
|
|
10
|
-
info: (...args) => console.
|
|
10
|
+
info: (...args) => console.error('[INFO]', ...args),
|
|
11
11
|
warn: (...args) => console.warn('[WARN]', ...args),
|
|
12
12
|
error: (...args) => console.error('[ERROR]', ...args),
|
|
13
13
|
debug: (...args) => { }
|