remove logging from loopmanager

This commit is contained in:
Ean Milligan 2025-05-03 09:25:59 -04:00
parent bb9a2014ed
commit 9bd757741b
1 changed files with 0 additions and 5 deletions

View File

@ -1,11 +1,6 @@
import { log, LogTypes as LT } from '@Log4Deno';
import config from '~config'; import config from '~config';
import { loggingEnabled } from 'src/artigen/utils/logFlag.ts';
let loopCount = 0; let loopCount = 0;
loggingEnabled && log(LT.LOG, 'Loop Manager Initialized');
// Will ensure if maxLoops is 10, 10 loops will be allowed, 11 will not. // Will ensure if maxLoops is 10, 10 loops will be allowed, 11 will not.
export const loopCountCheck = (): void => { export const loopCountCheck = (): void => {