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 <deadbeef@webrtc.org>
Reviewed-by: Taylor Brandstetter <deadbeef@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20150}
This commit is contained in:
Taylor Brandstetter
2017-10-04 13:00:27 -07:00
committed by Commit Bot
parent afe016501e
commit 6661764acc

View File

@ -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();