(svn r24957) -Document [FS#5349]: newlines and other special characters are removed/converted

This commit is contained in:
rubidium 2013-02-02 19:46:46 +00:00
parent 4a9e710fa7
commit 2e20291a3d

View File

@ -53,18 +53,21 @@ public:
/** /**
* Print an Info message to the logs. * Print an Info message to the logs.
* @param message The message to log. * @param message The message to log.
* @note Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs.
*/ */
static void Info(const char *message); static void Info(const char *message);
/** /**
* Print a Warning message to the logs. * Print a Warning message to the logs.
* @param message The message to log. * @param message The message to log.
* @note Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs.
*/ */
static void Warning(const char *message); static void Warning(const char *message);
/** /**
* Print an Error message to the logs. * Print an Error message to the logs.
* @param message The message to log. * @param message The message to log.
* @note Special characters such as U+0000-U+0019 and U+E000-U+E1FF are not supported and removed or replaced by a question mark. This includes newlines and tabs.
*/ */
static void Error(const char *message); static void Error(const char *message);