VLCLibrary::debugLogging
- Return value of
VLCLibrary::debugLoggingis alwaysfalse. -
VLCLibrary::debugLoggingLevelcan be set tointoutside of the preset range; 0-4.
guard let library = VLCLibrary.shared() else {
XCTFail("Could not retrieve shared library")
return
}
library.debugLogging = true
library.debugLoggingLevel = 9000
// Always fails
XCTAssertTrue(library.debugLogging)
// debugLoggingLevel should range from 0-4.
XCTAssertEquals(library.debugLoggingLevel, 9000)
Edited by Mike JS. Choi