blob: 396326665da012b39a2adb6bb289465a3f433a80 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 IBM Corporation.
* 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:
* Mike Squillace - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.util.logging;
import org.eclipse.actf.core.ActfCorePlugin;
/**
* @author Mike Squillace
*/
public class EclipseErrorLogger extends AbstractErrorLogger
{
/** {@inheritDoc} */
public void logError (String msg, Throwable t) {
ActfCorePlugin.getDefault().logException(msg, t);
}
}