Whatever message this page gives is out now! Go check it out!
warn(String message) warn(Throwable th) warn(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. |
propsFilePath=configpath; try { FileInputStream propsFile = new FileInputStream(propsFilePath); properties.load(propsFile); propsFile.close(); this.loadProperties(); } catch (IOException e) { // do nothing. use default value for port. log.warn("SocketGateway(" + gatewayID + ") Unable to read configuration file " + propsFilePath + ": " + e.ToString() + ".Using default port.", e); } |