Fix checkstyle warnings in logback-config-loader.
[controller.git] / opendaylight / config / logback-config-loader / src / test / java / org / opendaylight / controller / logback / config / loader / test / logwork / Tracer.java
1 /**
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.logback.config.loader.test.logwork;
9
10 import org.slf4j.Logger;
11 import org.slf4j.LoggerFactory;
12
13 /**
14  * dummy logging guy
15  */
16 public class Tracer {
17
18     private static final Logger LOG = LoggerFactory.getLogger(Tracer.class);
19
20     /**
21      * all logging
22      */
23     public static void doSomeAction() {
24         LOG.trace("tracing");
25         LOG.debug("debugging");
26         LOG.info("infoing");
27         LOG.warn("warning");
28         LOG.error("erroring");
29     }
30
31 }