mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
39 lines
764 B
Markdown
39 lines
764 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [enableLog](./bitburner.ns.enablelog.md)
|
|
|
|
## NS.enableLog() method
|
|
|
|
Enables logging for the given NS function.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
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
|
|
|
|
|
|
```js
|
|
ns.enableLog("hack"); // Enable logging for `ns.hack()`
|
|
|
|
```
|
|
|