//////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////// ! Write a message into the log file and the console @param String to write @see stuff */
| 491 | @see stuff |
| 492 | */ |
| 493 | int CScriptObjectSystem::Log(IFunctionHandler *pH) |
| 494 | { |
| 495 | CHECK_PARAMETERS(1); |
| 496 | |
| 497 | LogString(pH,false); |
| 498 | |
| 499 | return (pH->EndFunction()); |
| 500 | } |
| 501 | |
| 502 | ///////////////////////////////////////////////////////////////////////////////// |
| 503 | //log a string to the console and or to the file with support for different |
no test coverage detected