Changeset - r20001:3db6da4aeaa8
[Not reviewed]
master
0 1 0
rubidium - 11 years ago 2013-02-02 19:46:46
rubidium@openttd.org
(svn r24957) -Document [FS#5349]: newlines and other special characters are removed/converted
1 file changed with 3 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/script/api/script_log.hpp
Show inline comments
 
@@ -53,18 +53,21 @@ public:
 
	/**
 
	 * Print an Info message to the logs.
 
	 * @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);
 

	
 
	/**
 
	 * Print a Warning message to the logs.
 
	 * @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);
 

	
 
	/**
 
	 * Print an Error message to the logs.
 
	 * @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);
 

	
0 comments (0 inline, 0 general)