35 lines
873 B
Java
35 lines
873 B
Java
//**********************************************************************************************
|
|
// (C) Copyright 2002 by Dipl. Phys. Joerg Plewe, HARDCODE Development
|
|
// All rights reserved. Copying, modification,
|
|
// distribution or publication without the prior written
|
|
// consent of the author is prohibited.
|
|
//
|
|
// Created on 29. Oktober 2002, 22:57
|
|
//**********************************************************************************************
|
|
package de.hardcode.jxinput.directinput;
|
|
|
|
import java.util.logging.Level;
|
|
import java.util.logging.Logger;
|
|
|
|
/**
|
|
*
|
|
* @author Herkules
|
|
*/
|
|
public class Log
|
|
{
|
|
public final static Logger logger = Logger.getLogger( Log.class.getPackage().getName() );
|
|
|
|
// static
|
|
// {
|
|
// logger.setLevel( Level.ALL );
|
|
// }
|
|
|
|
/**
|
|
* Creates a new instance of Log.
|
|
*/
|
|
private Log()
|
|
{
|
|
}
|
|
|
|
}
|