-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'client_side_inapps' of https://github.com/CleverTap/cle…
…vertap-android-sdk into client_side_inapps
- Loading branch information
Showing
68 changed files
with
1,555 additions
and
879 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
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
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
31 changes: 31 additions & 0 deletions
31
clevertap-core/src/main/java/com/clevertap/android/sdk/ILogger.java
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,31 @@ | ||
package com.clevertap.android.sdk; | ||
|
||
public interface ILogger { | ||
void debug(String message); | ||
|
||
void debug(String suffix, String message); | ||
|
||
void debug(String suffix, String message, Throwable t); | ||
|
||
@SuppressWarnings("unused") | ||
void debug(String message, Throwable t); | ||
|
||
@SuppressWarnings("unused") | ||
void info(String message); | ||
|
||
void info(String suffix, String message); | ||
|
||
@SuppressWarnings("unused") | ||
void info(String suffix, String message, Throwable t); | ||
|
||
@SuppressWarnings("unused") | ||
void info(String message, Throwable t); | ||
|
||
void verbose(String message); | ||
|
||
void verbose(String suffix, String message); | ||
|
||
void verbose(String suffix, String message, Throwable t); | ||
|
||
void verbose(String message, Throwable t); | ||
} |
Oops, something went wrong.