Skip to content

Commit

Permalink
less verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Sep 22, 2024
1 parent 0c079b7 commit 353a298
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ fun chatReducer(state: MessageState, action: MessageAction): MessageState = when
catch (e: Exception)
{
}
Log.i(TAG, "MessageAction.UpdateMessage")
// Log.i(TAG, "MessageAction.UpdateMessage")
state.copy(messages = state.messages)
}
is MessageAction.UpdateTextMessage ->
Expand All @@ -101,7 +101,7 @@ fun chatReducer(state: MessageState, action: MessageAction): MessageState = when
catch (e: Exception)
{
}
Log.i(TAG, "MessageAction.UpdateTextMessage")
// Log.i(TAG, "MessageAction.UpdateTextMessage")
state.copy(messages = state.messages)
}
else ->
Expand Down

0 comments on commit 353a298

Please sign in to comment.