Agent.Log
Method | Log |
---|---|
Module | Agent |
Library | Core |
Action | Write a message to the Tachyon Agent log file. |
Parameters | |
Return values | |
Example | Agent.Log(Level: "info", Message: "Starting file analysis"); // etc. Agent.Log(Level: "info", Message: "Completed file analysis"); |
Platforms |
|
Notes | Useful for diagnosing/monitoring progress of an instruction. The Agent's log level setting determines whether the specified message actually appears in the log. For example, if the Agent's log level is configured as "info", then "debug" messages will not be visible in the log (but the output of the method will still return the Level and Message values). |