ErrorLog::Report()
Print the text of an error to stderr
.
Virtual? |
No |
|
Class |
||
Arguments |
None |
|
Returns |
|
Notes
Report()
functions
similarly to Error::Fmt()
, but
displays the text on stderr
rather than copying it into a
StrBuf
.
Example
The following example displays the contents of an error.
ClientApi client; Error e; client.Init( &e ); ErrorLog::Report();