Skip to content

Commit

Permalink
Use FLog instead of Log
Browse files Browse the repository at this point in the history
  • Loading branch information
fkoester committed Oct 22, 2016
1 parent abe99c3 commit 67ee28e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
package com.facebook.react.modules.network;

import android.os.Build;
import android.util.Log;

import com.facebook.common.logging.FLog;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;

import javax.annotation.Nullable;
import javax.net.ssl.SSLContext;

import okhttp3.ConnectionSpec;
import okhttp3.OkHttpClient;
Expand Down Expand Up @@ -77,7 +77,7 @@ public static OkHttpClient.Builder enableTls12OnPreLollipop(OkHttpClient.Builder

client.connectionSpecs(specs);
} catch (Exception exc) {
Log.e("OkHttpClientProvider", "Error while enabling TLS 1.2", exc);
FLog.e("OkHttpClientProvider", "Error while enabling TLS 1.2", exc);
}
}

Expand Down

0 comments on commit 67ee28e

Please sign in to comment.