Skip to content

Instantly share code, notes, and snippets.

@cp-hardik-p
Created December 30, 2022 06:18
Show Gist options
  • Save cp-hardik-p/a2b7d29b8661d3491195ee8aaabd67a2 to your computer and use it in GitHub Desktop.
Save cp-hardik-p/a2b7d29b8661d3491195ee8aaabd67a2 to your computer and use it in GitHub Desktop.
private fun writeLog(logFile: File, log: String) {
val writer = FileWriter(logFile, true)
writer.append(log)
writer.flush()
writer.close()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment