ISdkLogpublic interface ISdkLog Interface used to display warnings/errors while parsing the SDK content. |
Methods Summary |
---|
public void | error(java.lang.Throwable t, java.lang.String errorFormat, java.lang.Object args)Prints an error message on stderr.
The message will be tagged with "Error" on the output so the caller does not
need to put such a prefix in the format string.
Implementation should always display errors, independent of verbose mode.
| public void | printf(java.lang.String msgFormat, java.lang.Object args)Prints a message as-is on stdout.
Implementation should always display errors, independent of verbose mode.
No prefix is used, the message is printed as-is after formatting.
| public void | warning(java.lang.String warningFormat, java.lang.Object args)Prints a warning message on stdout.
The message will be tagged with "Warning" on the output so the caller does not
need to put such a prefix in the format string.
Implementations should only display warnings in verbose mode.
|
|