bitburner-src/markdown/bitburner.ns.enablelog.md
2024-06-28 02:37:04 -07:00

764 B

Home > bitburner > NS > enableLog

NS.enableLog() method

Enables logging for the given NS function.

Signature:

enableLog(fn: string): void;

Parameters

Parameter Type Description
fn string Name of the NS function for which to enable logging.

Returns:

void

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").

Example

ns.enableLog("hack"); // Enable logging for `ns.hack()`