diff --git a/rtc_base/java/src/org/webrtc/Logging.java b/rtc_base/java/src/org/webrtc/Logging.java index 3c3b7a68b3..1afb687605 100644 --- a/rtc_base/java/src/org/webrtc/Logging.java +++ b/rtc_base/java/src/org/webrtc/Logging.java @@ -24,7 +24,13 @@ import java.util.logging.Logger; * - Logging.enableLogTimeStamps * - Logging.enableTracing * - Logging.enableLogToDebugOutput - * Using native logging requires the presence of the jingle_peerconnection_so library. + * + * Using these APIs requires that the native library is loaded. For example: + * + * System.loadLibrary("jingle_peerconnection_so") + * + * Many objects (such as PeerConnectionFactory) do this automatically when + * constructed. */ public class Logging { private static final Logger fallbackLogger = createFallbackLogger();