Skip to content

Commit

Permalink
[DNS] Local Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cobryan05 committed Jun 13, 2024
1 parent f09d289 commit 217d742
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions app/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ android {

//testInstrumentationRunner("androidx.test.runner.AndroidJUnitRunner")
}
lintOptions {
// Disables lint checks
isCheckReleaseBuilds = false
isAbortOnError = false
isIgnoreWarnings = true
isWarningsAsErrors = false
}
packagingOptions {
jniLibs {
pickFirsts += setOf("**/*.so")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ class LoggerRepositoryImpl: LoggerRepository {
get() = _logHistoryFlow

override fun log(obj: Any?, type: LogType, getMessage: () -> String) {
var tag = "octo4a: "
var tag = "octo4aLog: "
obj?.let {
tag = obj::class.java.simpleName + ": "
tag += obj::class.java.simpleName + ": "
}

Log.d(type.getTypeEmoji(), getMessage())
Log.d(tag, getMessage())

runBlocking {
Looper.getMainLooper().run {
Expand Down

0 comments on commit 217d742

Please sign in to comment.