mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
39 lines
758 B
Markdown
39 lines
758 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [isLogEnabled](./bitburner.ns.islogenabled.md)
|
|
|
|
## NS.isLogEnabled() method
|
|
|
|
Checks the status of the logging for the given NS function.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
isLogEnabled(fn: string): boolean;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| fn | string | Name of function to check. |
|
|
|
|
**Returns:**
|
|
|
|
boolean
|
|
|
|
Returns a boolean indicating whether or not logging is enabled for that NS function (or `ALL`<!-- -->).
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 0 GB
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
ns.print(ns.isLogEnabled("hack")); // Check if logging is enabled for `ns.hack()`
|
|
|
|
```
|
|
|