blob: 962d0f27988e2cef3452533a13895e748fb6651d [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.importing.xml.services;
import java.io.File;
import org.eclipse.epf.dataexchange.util.FileLogger;
import org.eclipse.epf.library.LibraryService;
/**
* Logger class for xml import
*
* @author Jinhua Xi
* @since 1.0
*/
public class ImportXMLogger extends FileLogger {
public static final String LOGS_FOLDER = "logs/import/xml"; //$NON-NLS-1$
/**
* The constructor
*/
public ImportXMLogger() {
super(new File(LibraryService.getInstance()
.getCurrentMethodLibraryLocation(), LOGS_FOLDER));
}
}