! Write a string to the console @param String to write @see CScriptObjectSystem::Log */
| 410 | @see CScriptObjectSystem::Log |
| 411 | */ |
| 412 | int CScriptObjectSystem::LogToConsole(IFunctionHandler *pH) |
| 413 | { |
| 414 | CHECK_PARAMETERS(1); |
| 415 | |
| 416 | LogString(pH,true); |
| 417 | |
| 418 | return (pH->EndFunction()); |
| 419 | } |
| 420 | |
| 421 | /*! log even with log verbosity 0 - without <LUA> |
| 422 | @param String to write |