blob: b2b671328e94b8b34ab5cce90b9d857d3b5f8e2d [file] [log] [blame]
package org.eclipse.stem.utility.gml;
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* The activator class controls the plug-in life cycle
*/
public class UtilLogger {
/**
* The plug-in ID
*/
public static final String PLUGIN_ID = "org.eclipse.stem.ui.reports"; //$NON-NLS-1$
// The shared instance
private static UtilLogger plugin;
/**
* The constructor
*/
public UtilLogger() {
plugin = this;
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static UtilLogger getDefault() {
return plugin;
}
/**
* Log information to the ILog for this plugin
* The method is overloaded to allow for logInformation without an error
* method sets the error to null. This should be used instead of UtilLogger.logInformation
* throughout the code.
* @param message
* the localized information message text
*
*/
public static void logInformation(String message) {
System.out.println(message);
} // logInformation
} // Activator