Browse Source

Move to 0.5.0-build262

debug-writer
Roman Sedaikin 3 years ago committed by Rsedaikin
parent
commit
2a3575dd00
  1. 4
      debug-writer/build.gradle.kts
  2. 7
      debug-writer/src/main/kotlin/debugwriter/Main.kt
  3. 14
      debug-writer/src/main/kotlin/debugwriter/Utils.kt

4
debug-writer/build.gradle.kts

@ -3,9 +3,9 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
// __KOTLIN_COMPOSE_VERSION__
kotlin("jvm") version "1.4.32"
kotlin("jvm") version "1.5.21"
// __LATEST_COMPOSE_RELEASE_VERSION__
id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.4.0-build188")
id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.5.0-build262")
}
repositories {

7
debug-writer/src/main/kotlin/debugwriter/Main.kt

@ -35,7 +35,7 @@ fun main() {
if (!result) {
output = "Failed to cteate file: $fileName"
}
try {
Window(
title = "DebugWriter",
size = IntSize(650, 450)
@ -80,6 +80,11 @@ fun main() {
}
}
}
catch(e: Exception) {
writeException(fileName, e)
System.exit(0)
}
}
private fun writeDebugInfo() {
isReady = false

14
debug-writer/src/main/kotlin/debugwriter/Utils.kt

@ -24,6 +24,20 @@ fun enableDebugWritingTo(fileName: String = "output.txt"): Boolean {
}
}
fun writeException(fileName: String = "output.txt", e: Exception) {
try {
val directory = File(Paths.get(fileName).getParent().toString())
if (!directory.exists()) {
directory.mkdir()
}
val stream = PrintStream(FileOutputStream("$fileName"))
e.printStackTrace(stream)
revealDebugOutput(fileName)
} catch(e: Exception) {
}
}
fun readDebugOutput(fileName: String = "output.txt"): String {
val file = File("$fileName")
if (!file.exists()) {

Loading…
Cancel
Save