From 6661764acc8a6d60d8d9e950c049cc67822bf902 Mon Sep 17 00:00:00 2001 From: Taylor Brandstetter Date: Wed, 4 Oct 2017 13:00:27 -0700 Subject: [PATCH] Clarifying Logging.java comment more. The comment was updated here: https://webrtc-review.googlesource.com/c/src/+/6200 But it should really refer to PeerConnectionFactory.initialize, which is the new approved way of initializing webrtc in Java. NOTRY=True TBR=sakal@webrtc.org Bug: None Change-Id: I7b57f5abf926a1437bd61d6592ba236eb30ee9c5 Reviewed-on: https://webrtc-review.googlesource.com/6560 Commit-Queue: Taylor Brandstetter Reviewed-by: Taylor Brandstetter Cr-Commit-Position: refs/heads/master@{#20150} --- rtc_base/java/src/org/webrtc/Logging.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/rtc_base/java/src/org/webrtc/Logging.java b/rtc_base/java/src/org/webrtc/Logging.java index 3fd6ffc880..d1cc2f05ac 100644 --- a/rtc_base/java/src/org/webrtc/Logging.java +++ b/rtc_base/java/src/org/webrtc/Logging.java @@ -24,12 +24,8 @@ import java.util.logging.Logger; * - Logging.enableLogTimeStamps * - Logging.enableLogToDebugOutput * - * 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. + * Using these APIs requires that the native library is loaded, using + * PeerConnectionFactory.initialize. */ public class Logging { private static final Logger fallbackLogger = createFallbackLogger();