return;
}
// Convert it to a CloudLog that contains the appropriate log content
// type
CloudLog log = getCloudlog(appLog);
IOConsoleOutputStream activeOutStream = getOutputStream(log.getLogType());
if (activeOutStream != null && log.getMessage() != null) {
try {
activeOutStream.write(log.getMessage());
}
catch (IOException e) {
throw CloudErrorUtil.toCoreException(e);
}
}