diff --git a/markdown/bitburner.ns.enablelog.md b/markdown/bitburner.ns.enablelog.md index 4ec95da5a..33a8aace9 100644 --- a/markdown/bitburner.ns.enablelog.md +++ b/markdown/bitburner.ns.enablelog.md @@ -26,7 +26,9 @@ void RAM cost: 0 GB -Re-enables logging for the given function. If `ALL` is passed into this function as an argument, it will revert the effect of disableLog("ALL"). +Logging can be enabled for all functions by passing `ALL` as the argument. + +For specific interfaces, use the form "namespace.functionName". (e.g. "ui.setTheme") ## Example diff --git a/src/ScriptEditor/NetscriptDefinitions.d.ts b/src/ScriptEditor/NetscriptDefinitions.d.ts index 4cd98d5ea..63cece4b5 100644 --- a/src/ScriptEditor/NetscriptDefinitions.d.ts +++ b/src/ScriptEditor/NetscriptDefinitions.d.ts @@ -6168,8 +6168,9 @@ export interface NS { * @remarks * RAM cost: 0 GB * - * Re-enables logging for the given function. If `ALL` is passed into this function as an argument, it will revert the - * effect of disableLog("ALL"). + * Logging can be enabled for all functions by passing `ALL` as the argument. + * + * For specific interfaces, use the form "namespace.functionName". (e.g. "ui.setTheme") * * @example * ```js