mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2025-01-22 05:51:35 +01:00
780 B
780 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
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
ns.enableLog("hack"); // Enable logging for `ns.hack()`