We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa5c5a1 commit 0e0d322Copy full SHA for 0e0d322
kotlin/sample/src/main/kotlin/Main.kt
@@ -3,8 +3,15 @@
3
4
package sample
5
6
+import com.github.kittinunf.fuel.core.Response
7
+import java.net.URL
8
import vacuumanalytics.LogEvent
9
10
fun main(argv : Array<String>) {
- println("HEYHEYEYEHHE")
11
+ val fakeResponse = Response(
12
+ url = URL("http://0.0.0.0"),
13
+ headers = mapOf("Set-Cookie" to listOf("sessionid=kotlintst"))
14
+ )
15
+ val logger = LogEvent("http://0.0.0.0:8080", fakeResponse, "sessionid")
16
+ logger.error("B'eba-%pBeba")
17
}
0 commit comments