Files
Thetya/thetya-tools/src/com/github/thetya/tools/Log.java
2025-08-14 12:20:46 +02:00

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");
}