blob: c8ecb08d03c443a1e57742987400c05514368fb0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.core.internal.validation.core.logging;
/**
* The interface for a standard logger. Allows for logging errors and warnings.
*
* @author Lawrence Mandel, IBM
*/
public interface ILogger
{
/**
* Log an error message.
*
* @param error The error message to log.
* @param exception The exception to log.
*/
public void logError(String error, Throwable exception);
/**
* Log a warning message.
*
* @param warning The warning message to log.
* @param exception The exception to log.
*/
public void logWarning(String warning, Throwable exception);
}