mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 18:23:54 +01:00
21 lines
664 B
ReStructuredText
21 lines
664 B
ReStructuredText
enableLog() Netscript Function
|
|
==============================
|
|
|
|
.. js:function:: enableLog(functionName)
|
|
|
|
:RAM cost: 0 GB
|
|
|
|
:param string functionName: Name of function for which to enable logging.
|
|
|
|
Re-enables logging for the given function. If 'ALL' is passed into this
|
|
function as an argument, then it will revert the effects of
|
|
``disableLog('ALL')``
|
|
|
|
Examples:
|
|
|
|
.. code-block:: javascript
|
|
|
|
//Opens the logs, clears it of whatever may have been there before and prevents non-print() functions from printing to log
|
|
ns.tail();ns.clearLog();ns.disableLog("ALL");
|
|
//let hack() log normally
|
|
ns.enableLog("hack"); |