Difference between revisions of "TraceUser - Debug"
Jump to navigation
Jump to search
imported>Rhavlovick m (1 revision: Clobber re-import by Henning) |
imported>Fg109 m (→Examples) |
||
Line 26: | Line 26: | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; Outputs "Hello World" to the "myUserLog" log | ; Outputs "Hello World" to the "myUserLog" log | ||
Debug. | Debug.TraceUser("myUserLog", "Hello World") | ||
</source> | </source> | ||
<br/> | <br/> | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
; Outputs "Houston, we have a problem" to the "myUserLog" log at error severity (colored red) | ; Outputs "Houston, we have a problem" to the "myUserLog" log at error severity (colored red) | ||
Debug. | Debug.TraceUser("myUserLog", "Houston, we have a problem", 2) | ||
</source> | </source> | ||
Revision as of 09:31, 16 June 2012
Member of: Debug Script
Outputs a string to the specified user log on disk, and the Papyrus debug text page. Returns true if the text was successfully output to the log.
Syntax
bool Function TraceUser(string asUserLog, string asTextToPrint, int aiSeverity = 0) native global
Parameters
- asUserLog: The name of the user log to output to, case-insensitive. The log must be open.
- asTextToPrint: The text that should be printed to the log and text page.
- aiSeverity: The severity of the trace statement. Info, the default, will show up as green; warnings will show up as yellow; and errors as red; in the Papyrus debug text page.
- Default: 0 (Info)
- The following values are acceptable:
- 0: Info
- 1: Warning
- 2: Error
Return Value
True if the message was successfully logged. False on failure (usually you forgot to open the log).
Examples
; Outputs "Hello World" to the "myUserLog" log
Debug.TraceUser("myUserLog", "Hello World")
; Outputs "Houston, we have a problem" to the "myUserLog" log at error severity (colored red)
Debug.TraceUser("myUserLog", "Houston, we have a problem", 2)