All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.trilead.ssh2.DebugLogger Maven / Gradle / Ivy

There is a newer version: 1.0.0-build222
Show newest version
package com.trilead.ssh2;

/**
 * An interface which needs to be implemented if you
 * want to capture debugging messages.
 * 
 * @see Connection#enableDebugging(boolean, DebugLogger)
 * 
 * @author Christian Plattner, [email protected]
 * @version $Id: DebugLogger.java,v 1.1 2008/03/03 07:01:36 cplattne Exp $
 */
public interface DebugLogger
{

/**
 * Log a debug message.
 * 
 * @param level 0-99, 99 is a the most verbose level
 * @param className the class that generated the message
 * @param message the debug message
 */
	public void log(int level, String className, String message);	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy