kitgit

tirbofish/dropbear · diff

4f1d650 · tk

debugging?

Unverified

diff --git a/build.gradle.kts b/build.gradle.kts
index 0b7a94f..d40bd31 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -92,7 +92,6 @@ kotlin {
     sourceSets {
         commonMain {
             dependencies {
-//                api("co.touchlab:kermit:2.0.4")
                 implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.0")
             }
         }
diff --git a/docs/articles/debugging.md b/docs/articles/debugging.md
new file mode 100644
index 0000000..ba70e14
--- /dev/null
+++ b/docs/articles/debugging.md
@@ -0,0 +1,36 @@
+# Debugging your app
+
+There is an issue while you are developing your game such as your code is
+a bit funky, and you cannot seem to point it out yourself. Well there is no 
+need to fret. The eucalyptus-editor has a `jdb` enabled. 
+
+## How to connect
+
+You have two options, you can either use the command line [`jdb`] or 
+IntelliJ IDEA, which has Java Debugging available as one of its tasks. 
+
+In common, you would have to connect to this: 
+- IP Address: localhost
+- Port: 6741 *(haha very funny im so much comedian)*
+
+### jdb
+
+To connect to jdb, this is the recommended command: 
+
+```bash
+jdb -connect com.sun.jdi.SocketAttach:hostname=localhost,port=6741
+```
+
+[//]: # (Don't ask why, but this one just works for me)
+
+### IntelliJ IDEA
+
+JetBrains IntelliJ IDEA is the best and recommended tool to use
+while in development. It contains debugging tools in a UI fashion,
+so it could help beginners too. 
+
+Here is the configuration:

Large diffs are not rendered by default. Showing the first 50 of 588 lines. Show full diff