mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Make RCTLog & ExceptionDataHelper internal (#49502)
Summary: As part of the initiative to reduce the public API surface, this classes can be internalized. I've checked there are no relevant OSS usages: - [RCTLog](https://github.com/search?type=code&q=NOT+is%3Afork+NOT+org%3Afacebook+NOT+repo%3Areact-native-tvos%2Freact-native-tvos+NOT+repo%3Anuagoz%2Freact-native+NOT+repo%3A2lambda123%2Freact-native+NOT+repo%3Abeanchips%2Ffacebookreactnative+NOT+repo%3AfabOnReact%2Freact-native-notes+NOT+user%3Ahuntie+NOT+repo%3AMaxdev18%2Fpowersync_app+NOT+repo%3Acarter-0%2Finstagram-decompiled+NOT+repo%3Am0mosenpai%2Finstadamn+NOT+repo%3AA-Star100%2FA-Star100-AUG2-2024+NOT+repo%3Alclnrd%2Fdetox-scrollview-reproductible+NOT+repo%3ADionisisChytiris%2FWorldWiseTrivia_Main+NOT+repo%3Apast3l%2Fhi2+NOT+repo%3AoneDotpy%2FCaribouQuest+NOT+repo%3Abejayoharen%2Fdailytodo+NOT+repo%3Amolangning%2Freversing-discord+NOT+repo%3AScottPrzy%2Freact-native+NOT+repo%3Agabrieldonadel%2Freact-native-visionos+NOT+repo%3AGabriel2308%2FTestes-Soft+NOT+repo%3Adawnzs03%2FflakyBuild+NOT+repo%3Acga2351%2Fcode+NOT+repo%3Astreeg%2Ftcc+NOT+repo%3Asoftware-mansion-labs%2Freact-native-swiftui+com.facebook.react.util.RCTLog) - [ExceptionDataHelper](https://github.com/search?type=code&q=NOT+is%3Afork+NOT+org%3Afacebook+NOT+repo%3Areact-native-tvos%2Freact-native-tvos+NOT+repo%3Anuagoz%2Freact-native+NOT+repo%3A2lambda123%2Freact-native+NOT+repo%3Abeanchips%2Ffacebookreactnative+NOT+repo%3AfabOnReact%2Freact-native-notes+NOT+user%3Ahuntie+NOT+repo%3AMaxdev18%2Fpowersync_app+NOT+repo%3Acarter-0%2Finstagram-decompiled+NOT+repo%3Am0mosenpai%2Finstadamn+NOT+repo%3AA-Star100%2FA-Star100-AUG2-2024+NOT+repo%3Alclnrd%2Fdetox-scrollview-reproductible+NOT+repo%3ADionisisChytiris%2FWorldWiseTrivia_Main+NOT+repo%3Apast3l%2Fhi2+NOT+repo%3AoneDotpy%2FCaribouQuest+NOT+repo%3Abejayoharen%2Fdailytodo+NOT+repo%3Amolangning%2Freversing-discord+NOT+repo%3AScottPrzy%2Freact-native+NOT+repo%3Agabrieldonadel%2Freact-native-visionos+NOT+repo%3AGabriel2308%2FTestes-Soft+NOT+repo%3Adawnzs03%2FflakyBuild+NOT+repo%3Acga2351%2Fcode+NOT+repo%3Astreeg%2Ftcc+NOT+repo%3Asoftware-mansion-labs%2Freact-native-swiftui+com.facebook.react.util.ExceptionDataHelper) ## Changelog: [INTERNAL] - Make RCTLog & ExceptionDataHelper internal Pull Request resolved: https://github.com/facebook/react-native/pull/49502 Test Plan: ```bash yarn test-android yarn android ``` Reviewed By: rshest Differential Revision: D69836482 Pulled By: cortinico fbshipit-source-id: 16f37acbd77bf151126bff22a6010201d8174bea
This commit is contained in:
committed by
Facebook GitHub Bot
parent
864d47822f
commit
e5f08c7ae0
@@ -5750,12 +5750,6 @@ public abstract interface class com/facebook/react/uimanager/util/ReactFindViewU
|
||||
public abstract fun onViewFound (Landroid/view/View;)V
|
||||
}
|
||||
|
||||
public final class com/facebook/react/util/ExceptionDataHelper {
|
||||
public static final field EXTRA_DATA_FIELD Ljava/lang/String;
|
||||
public static final field INSTANCE Lcom/facebook/react/util/ExceptionDataHelper;
|
||||
public static final fun getExtraDataAsJson (Lcom/facebook/react/bridge/ReadableMap;)Ljava/lang/String;
|
||||
}
|
||||
|
||||
public final class com/facebook/react/util/JSStackTrace {
|
||||
public static final field COLUMN_KEY Ljava/lang/String;
|
||||
public static final field FILE_KEY Ljava/lang/String;
|
||||
@@ -5765,10 +5759,6 @@ public final class com/facebook/react/util/JSStackTrace {
|
||||
public static final fun format (Ljava/lang/String;Lcom/facebook/react/bridge/ReadableArray;)Ljava/lang/String;
|
||||
}
|
||||
|
||||
public abstract interface class com/facebook/react/util/RCTLog : com/facebook/react/bridge/JavaScriptModule {
|
||||
public abstract fun logIfNoNativeHook (Ljava/lang/String;Ljava/lang/String;)V
|
||||
}
|
||||
|
||||
public final class com/facebook/react/util/RNLog {
|
||||
public static final field ADVICE I
|
||||
public static final field ERROR I
|
||||
|
||||
+3
-3
@@ -14,12 +14,12 @@ import com.facebook.react.bridge.ReadableType
|
||||
import java.io.IOException
|
||||
import java.io.StringWriter
|
||||
|
||||
public object ExceptionDataHelper {
|
||||
internal object ExceptionDataHelper {
|
||||
|
||||
public const val EXTRA_DATA_FIELD: String = "extraData"
|
||||
const val EXTRA_DATA_FIELD: String = "extraData"
|
||||
|
||||
@JvmStatic
|
||||
public fun getExtraDataAsJson(metadata: ReadableMap?): String? {
|
||||
fun getExtraDataAsJson(metadata: ReadableMap?): String? {
|
||||
if (metadata == null || metadata.getType(EXTRA_DATA_FIELD) == ReadableType.Null) {
|
||||
return null
|
||||
}
|
||||
|
||||
@@ -14,12 +14,12 @@ import com.facebook.react.bridge.JavaScriptModule
|
||||
*
|
||||
* The RCTLog module allows for showing native logs in JavaScript.
|
||||
*/
|
||||
public interface RCTLog : JavaScriptModule {
|
||||
internal interface RCTLog : JavaScriptModule {
|
||||
/**
|
||||
* Send a log to JavaScript.
|
||||
*
|
||||
* @param level The level of the log.
|
||||
* @param message The message to log.
|
||||
*/
|
||||
public fun logIfNoNativeHook(level: String?, message: String?)
|
||||
fun logIfNoNativeHook(level: String?, message: String?)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user