* @param channel channel name used for logging
* @param level level used for logging
*/
public void log(Object data, Throwable throwable, String channel, int level) {
Category cat = getCategory(channel);
cat.log(toPriority(level), data, throwable);
}
/**
* Log an object thru the specified channel and with the specified level.