All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.camel.component.irc.IrcErrorLogger Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.camel.component.irc;

import org.apache.commons.logging.Log;
import org.schwering.irc.lib.IRCEventAdapter;
import org.schwering.irc.lib.IRCModeParser;
import org.schwering.irc.lib.IRCUser;

/**
 * A helper class which logs errors
 *
 * @version $Revision: 630591 $
 */
public class IrcErrorLogger extends IRCEventAdapter {
    private Log log;

    public IrcErrorLogger(Log log) {
        this.log = log;
    }

    @Override
    public void onRegistered() {
        super.onRegistered();
        log.info("onRegistered");
    }

    @Override
    public void onDisconnected() {
        super.onDisconnected();
        log.info("onDisconnected");
    }

    @Override
    public void onMode(String string, IRCUser ircUser, IRCModeParser ircModeParser) {
        super.onMode(string, ircUser, ircModeParser);
        log.info("onMode.string = " + string);
        log.info("onMode.ircUser = " + ircUser);
        log.info("onMode.ircModeParser = " + ircModeParser);
    }

    @Override
    public void onMode(IRCUser ircUser, String string, String string1) {
        super.onMode(ircUser, string, string1);
        log.info("onMode.ircUser = " + ircUser);
        log.info("onMode.string = " + string);
        log.info("onMode.string1 = " + string1);
    }

    @Override
    public void onPing(String string) {
        super.onPing(string);
        log.info("onPing.string = " + string);
    }

    @Override
    public void onError(String string) {
        log.info("onError.string = " + string);
    }

    @Override
    public void onError(int i, String string) {
        super.onError(i, string);
        log.error("onError.i = " + i);
        log.error("onError.string = " + string);
    }

    @Override
    public void unknown(String string, String string1, String string2, String string3) {
        super.unknown(string, string1, string2, string3);
        log.error("unknown.string = " + string);
        log.error("unknown.string1 = " + string1);
        log.error("unknown.string2 = " + string2);
        log.error("unknown.string3 = " + string3);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy