Skip to content

Commit

Permalink
add changelog and LogDebug to Swift
Browse files Browse the repository at this point in the history
  • Loading branch information
cohix committed Apr 2, 2021
1 parent 959d3b1 commit 0446b6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions api/swift/Sources/suborbital/lib.swift
Expand Up @@ -100,6 +100,10 @@ public func CacheGet(key: String) -> String {
return retVal
}

public func LogDebug(msg: String) {
log(msg: msg, level: 4)
}

public func LogInfo(msg: String) {
log(msg: msg, level: 3)
}
Expand Down
1 change: 1 addition & 0 deletions changelogs/v0.9.2.md
@@ -0,0 +1 @@
This release adds a debug log level for Runnables and improves the handling of HTTP requests that result in an error.

0 comments on commit 0446b6b

Please sign in to comment.