Initial commit

This commit is contained in:
Gitea
2025-08-14 12:20:46 +02:00
commit 7384eeb2f0
290 changed files with 614128 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*
* 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");
}