Skip to content

Commit

Permalink
Update PinLog.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaBavadekar authored Aug 2, 2022
1 parent 90c2cff commit f1939bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pinlog/src/main/java/com/adityaamolbavadekar/pinlog/PinLog.kt
Original file line number Diff line number Diff line change
Expand Up @@ -684,8 +684,8 @@ object PinLog {
} else {
val list = (applicationLogDataSource!!.getAllPinLogsAsStringList())
logs = ""
list.forEach {
logs += it + "\n"
for (stringLog in list) {
logs += stringLog + "\n"
}
}
return logs
Expand Down

0 comments on commit f1939bf

Please sign in to comment.