We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f09d2a commit 23821cfCopy full SHA for 23821cf
1 file changed
internal/api/rust/rust.go
@@ -30,15 +30,15 @@ func DeleteOldLogs(prefix string) {
30
31
func SetupLogs(prefix string) {
32
// log new files
33
- matrix_sdk_ffi.SetupTracing(matrix_sdk_ffi.TracingConfiguration{
+ matrix_sdk_ffi.InitPlatform(matrix_sdk_ffi.TracingConfiguration{
34
LogLevel: matrix_sdk_ffi.LogLevelTrace,
35
ExtraTargets: nil,
36
WriteToStdoutOrSystem: false,
37
WriteToFiles: &matrix_sdk_ffi.TracingFileConfiguration{
38
Path: "./logs",
39
FilePrefix: prefix,
40
},
41
- })
+ }, false)
42
}
43
44
var zero uint32
0 commit comments