Skip to content

Commit

Permalink
bug-fix(logging)!: array out of bound exception
Browse files Browse the repository at this point in the history
Signed-off-by: Dipankar Das <[email protected]>
  • Loading branch information
dipankardas011 committed Jun 20, 2024
1 parent 4fdb298 commit ada7a3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logger/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func addLineTerminationForLongStrings(str string) string {

helper = func(_str string) string {

if len(_str) < limitCol {
if len(_str) <= limitCol {
return _str
}

Expand Down

0 comments on commit ada7a3e

Please sign in to comment.