/**
* Copyright (C) 2012 https://github.com/tenderowls/haxemojos
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.yelbota.plugins.nd.stubs;
import org.codehaus.plexus.logging.Logger;
public class LoggerStub implements Logger {
@Override
public void debug(String s) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void debug(String s, Throwable throwable) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public boolean isDebugEnabled() {
return false; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void info(String s) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void info(String s, Throwable throwable) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public boolean isInfoEnabled() {
return false; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void warn(String s) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void warn(String s, Throwable throwable) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public boolean isWarnEnabled() {
return false; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void error(String s) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void error(String s, Throwable throwable) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public boolean isErrorEnabled() {
return false; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void fatalError(String s) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void fatalError(String s, Throwable throwable) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public boolean isFatalErrorEnabled() {
return false; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public int getThreshold() {
return 0; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void setThreshold(int i) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public Logger getChildLogger(String s) {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public String getName() {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
}