mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 22:38:34 +02:00
Replace "ALL" log flag with individually disabling every log.
https://github.com/danielyxie/bitburner/issues/1116
This commit is contained in:
@@ -187,7 +187,7 @@ export class WorkerScript {
|
||||
}
|
||||
|
||||
shouldLog(fn: string): boolean {
|
||||
return (this.disableLogs.ALL == null && this.disableLogs[fn] == null);
|
||||
return (this.disableLogs[fn] == null);
|
||||
}
|
||||
|
||||
log(func: string, txt: string): void {
|
||||
|
||||
Reference in New Issue
Block a user