001 package org.shiftone.jrat.util.log; 002 003 004 /** 005 * @author jeff@shiftone.org (Jeff Drost) 006 */ 007 public interface LoggingManagerMBean { 008 009 void makeLevelLoud(); 010 011 012 void setLevel(String levelName); 013 014 015 String getLevel(); 016 017 018 void disableLogging(); 019 020 021 void enableSystemOutLogging(); 022 }