red5 - Where are the application log files kept?
I just wanted to ask where the application logs are k开发者_如何学编程ept, so if i had code in my class as so:
import org.red5.logging.Red5LoggerFactory;
logger.debug("Recording show for: {}", conn.getScope().getContextPath());
whwre would this text be written to?
Thanks in advance.
They're using the org.slf4j.Logger
class, it seems.
From this site, I think that it should be logging to standard out or standard error. However, I read the API, and it looks like there is a variable to control logging level. Are you getting any debug-level messages?
精彩评论