FileDocCategorySizeDatePackage
DebugLight.javaAPI DocAzureus 3.0.3.41408Wed Feb 01 03:09:28 GMT 2006org.gudy.azureus2.core3.util

DebugLight

public class DebugLight extends Object

Fields Summary
Constructors Summary
Methods Summary
public static voidout(java.lang.String str)

		try{
			Debug.out( str );
			
		}catch( Throwable f ){
			
			System.out.println( str );
		}
	
public static voidprintStackTrace(java.lang.Throwable e)
Used in environments where full debug may not be available

param
e

		try{
			Debug.printStackTrace( e );
			
		}catch( Throwable f ){
			
			e.printStackTrace();
		}