23 lines
447 B
Java
23 lines
447 B
Java
/*
|
|
* Copyright (c) 2014-2021 Thetya Team
|
|
* Copyright (c) 2005-2011 Three Rings
|
|
*
|
|
* https://github.com/Thetya
|
|
*/
|
|
|
|
package com.github.thetya.tools;
|
|
|
|
import com.samskivert.util.Logger;
|
|
|
|
/**
|
|
* Contains a reference to the {@link Logger} object used by the tools package.
|
|
*/
|
|
@SuppressWarnings("unused")
|
|
public class Log {
|
|
|
|
/**
|
|
* The {@link Logger} reference.
|
|
*/
|
|
public static Logger log = Logger.getLogger("com.github.thetya.tools");
|
|
}
|