This repository was archived by the owner on Mar 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Part of measurement-kit <https://measurement-kit.github.io/>. | ||
// Measurement-kit is free software. See AUTHORS and LICENSE for more | ||
// information on the copying conditions. | ||
|
||
package io.github.measurement_kit.jni; | ||
|
||
/** | ||
* Access to MeasurementKit Logger functionality | ||
*/ | ||
public class LoggerApi { | ||
|
||
/** | ||
* Control verbosity of the default logger. | ||
* @param verbose Make verbose if true, quiet if false. | ||
*/ | ||
public static native void setVerbose(int verbose); | ||
|
||
/** | ||
* Redirect default logger's output to Android logcat. | ||
*/ | ||
public static native void useAndroidLogger(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters