blob: 5b827055c4948eded9eef65b14158359d5809ce9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 EclipseSource Muenchen GmbH.
*
* 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:
******************************************************************************/
package org.eclipse.emf.emfstore.client.ui.errorreporting;
/**
* Interface for adding information to the error diagnosis and system information file that
* is created via {@link ErrorReportingUtil#captureSysInfo(java.util.Date, String)}.
*
* @author emueller
*/
public interface ILoggable {
/**
* Returns the string to be logged.
*
* @return the string to be logged
*/
String getLoggable();
}