Skip to content

Commit ac10424

Browse files
committed
update some debug log levels to lower
1 parent f19b272 commit ac10424

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/jvmMain/kotlin/com/sunnychung/application/multiplatform/hellohttp/ux/AppTextField.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fun AppTextField(
7979
textState = textState,
8080
onValueChange = {
8181
val newStringValue = it.buildString()
82-
log.w { "onTextChange: new = $newStringValue" }
82+
log.d { "onTextChange: new = $newStringValue" }
8383
onValueChange(newStringValue)
8484
},
8585
modifier = modifier,

src/jvmMain/kotlin/com/sunnychung/application/multiplatform/hellohttp/ux/RequestEditorView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ fun RequestEditorView(
464464
modifier = Modifier.weight(1f)
465465
.focusRequester(focusRequester)
466466
.onFocusChanged { f ->
467-
log.w { "RequestListView onFocusChanged ${f.hasFocus} ${f.isFocused}" }
467+
log.d { "RequestListView onFocusChanged ${f.hasFocus} ${f.isFocused}" }
468468
if (!f.hasFocus && editExampleNameViewModel.isInvokeModelUpdate()) {
469469
onRequestModified(request.copy(examples = request.examples.copyWithChange(it.copy(name = textFieldState.text.buildString()))))
470470
}

src/jvmMain/kotlin/com/sunnychung/application/multiplatform/hellohttp/ux/transformation/incremental/JsonSyntaxHighlightLinearDecorator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class JsonSyntaxHighlightLinearDecorator(colours: AppColor) : CacheableBigTextDe
6464
reader.nextToken
6565
tokens = JsonParser3(reader).parse()
6666
} catch (e: IOException) {
67-
log.w { "Parsing JSON failed: ${e.message}" }
67+
log.i { "Parsing JSON failed: ${e.message}" }
6868
}
6969
}
7070

0 commit comments

Comments
 (0)