|
@@ -10,6 +10,7 @@ public class DcContext {
|
|
|
public var logger: Logger?
|
|
|
let contextPointer: OpaquePointer
|
|
|
public var lastErrorString: String?
|
|
|
+ public var maxConfigureProgress: Int = 0 // temporary thing to get a grip on some weird errors
|
|
|
|
|
|
private init() {
|
|
|
var version = ""
|
|
@@ -292,6 +293,7 @@ public class DcContext {
|
|
|
}
|
|
|
|
|
|
public func configure() {
|
|
|
+ maxConfigureProgress = 0
|
|
|
dc_configure(contextPointer)
|
|
|
}
|
|
|
|