Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Replaces println(e) with e.printStackTrace() in IosGameWindow
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz-invideo committed Feb 16, 2022
1 parent e4797e0 commit aba5cb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class IosGameWindow : GameWindow() {
//println("loop[1]")
} catch (e: Throwable) {
println("ERROR IosGameWindow.loop:")
println(e)
e.printStackTrace()
}
}

Expand Down

0 comments on commit aba5cb3

Please sign in to comment.