Whatever message this page gives is out now! Go check it out!
error(String message) error(Throwable th) error(String message, Throwable th) |
| Parameter | Description |
message | The message to include in the log entry. |
th | A throwable object, normally an exception. ColdFusion logs the exception information in the exception.log file in the ColdFusion logs directory. |
SocketServerThread st = ((SocketServerThread)socketRegistry.get(cfmsg.getOriginatorID())); if(st != null) st.writeOutput(message); else { log.error("Cannot send outgoing message. OriginatorID '" + cfmsg.getOriginatorID() + "' is not a valid socket id."); retcode="failed"; } |