Package com.wolfssl.provider.jsse
Class WolfSSLDebug
- java.lang.Object
-
- com.wolfssl.provider.jsse.WolfSSLDebug
-
public class WolfSSLDebug extends java.lang.Object
Central location for all debugging messages This class is used internally for displaying debug message.- Author:
- wolfSSL
-
-
Constructor Summary
Constructors Constructor Description WolfSSLDebug()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
log(java.lang.Class cl, java.lang.String tag, java.lang.String string)
Checks if debugging is turned on and prints out the message.static void
print(java.lang.String string)
Prints out a message to the console
-
-
-
Method Detail
-
print
public static void print(java.lang.String string)
Prints out a message to the console- Parameters:
string
- message to be printed
-
log
public static void log(java.lang.Class cl, java.lang.String tag, java.lang.String string)
Checks if debugging is turned on and prints out the message.- Parameters:
cl
- class being called from to get debug infotag
- level of debug message i.e. WolfSSLDebug.INFOstring
- message to be printed out
-
-