Skip to content

Commit 0446b6b

Browse files
committed
add changelog and LogDebug to Swift
1 parent 959d3b1 commit 0446b6b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

api/swift/Sources/suborbital/lib.swift

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ public func CacheGet(key: String) -> String {
100100
return retVal
101101
}
102102

103+
public func LogDebug(msg: String) {
104+
log(msg: msg, level: 4)
105+
}
106+
103107
public func LogInfo(msg: String) {
104108
log(msg: msg, level: 3)
105109
}

changelogs/v0.9.2.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This release adds a debug log level for Runnables and improves the handling of HTTP requests that result in an error.

0 commit comments

Comments
 (0)