if (!enable && null == _watchdog) {
return;
}
if (enable && null != _file) {
if (null == _watchdog) {
_watchdog = new FileWatchdog();
_watchdog.setFile(_file);
_watchdog.setCallback(new LogWatchdogCallback(this));
_watchdog.setDelay(_delay);
_watchdog.start();
} else {