blob: 53c0176c2c0edcd1b36f616ccc69d5acc0191e61 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// dmccann - September 17/2009 - 1.2 - Initial implementation
package org.eclipse.persistence.jaxb.compiler;
import org.eclipse.persistence.logging.AbstractSessionLog;
import org.eclipse.persistence.logging.SessionLog;
/**
* <p>Class used to log warnings during the processing of JAXB annotations and
* OXM XML bindings files.</p>
*/
public class JAXBMetadataLogger {
public final static String NO_PROPERTY_FOR_JAVA_ATTRIBUTE = "jaxb_metadata_warning_ignoring_java_attribute";
public final static String INVALID_BOUND_TYPE = "jaxb_metadata_warning_invalid_bound_type";
public final static String NO_CLASSES_TO_PROCESS = "jaxb_metadata_warning_no_classes_to_process";
public final static String INVALID_JAVA_ATTRIBUTE = "jaxb_metadata_warning_invalid_java_attribute";
public final static String INVALID_TYPE_ON_MAP = "jaxb_metadata_warning_ignoring_type_on_map";
/**
* Create a new JAXBMetadataLogger
*/
public JAXBMetadataLogger() {
}
/**
* Create a new JAXBMetadataLogger and set the logLevel.
*
* @see SessionLog
*/
public JAXBMetadataLogger(int logLevel) {
AbstractSessionLog.getLog().setLevel(logLevel);
}
/**
* Logs a message at the SessionLog.INFO level.
*
* @param message The message to log
* @param args The arguments corresponding with this message
* @see SessionLog
*/
public void log(String message, Object[] args) {
AbstractSessionLog.getLog().log(SessionLog.INFO, message, args);
}
/**
* Logs a Warning message to the SessionLog.
*
* @param message The message to log
* @param args The arguments corresponding with this message
* @see SessionLog
*/
public void logWarning(String message, Object[] args) {
AbstractSessionLog.getLog().log(SessionLog.WARNING, message, args);
}
/**
* Logs a Severe message to the SessionLog. Typically called when EclipseLink is not in a state
* to continue
*
* @see SessionLog
*/
public void logException(Throwable throwable) {
AbstractSessionLog.getLog().logThrowable(SessionLog.SEVERE, throwable);
}
}