mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
672db77eae
Reviewed By: achen1 Differential Revision: D5741087 fbshipit-source-id: f6b8f713cb3c4e48b417b47557a45ff9a4a5bf05
14 lines
437 B
Java
14 lines
437 B
Java
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
package com.facebook.debug.holder;
|
|
|
|
import com.facebook.debug.debugoverlay.model.DebugOverlayTag;
|
|
|
|
/** Interface to debugging tool. */
|
|
public interface Printer {
|
|
|
|
void logMessage(final DebugOverlayTag tag, final String message, Object... args);
|
|
void logMessage(final DebugOverlayTag tag, final String message);
|
|
boolean shouldDisplayLogMessage(final DebugOverlayTag tag);
|
|
}
|