CloseUserLog - Debug

Member of: Debug Script

Closes the specified user log. If the log isn't open, it doesn't do anything. A subsequent call to OpenUserLog will cycle the logs on disk (so log 0 becomes 1, 1 becomes 2, etc).

SyntaxEdit

Function CloseUserLog(string asLogName) native global

ParametersEdit

  • asLogName: The name of the user log to close (case-insensitive).

Return ValueEdit

None

ExamplesEdit

; Closes the "mySpecialLog" log
Debug.CloseUserLog("mySpecialLog")

See AlsoEdit