We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95c3738 commit 8c3953dCopy full SHA for 8c3953d
app/src/main/kotlin/io/element/android/x/initializer/TracingInitializer.kt
@@ -71,8 +71,9 @@ class TracingInitializer : Initializer<Unit> {
71
return WriteToFilesConfiguration.Enabled(
72
directory = bugReporter.logDirectory().absolutePath,
73
filenamePrefix = "logs",
74
- filenameSuffix = null,
75
- // Keep a minimum of 1 week of log files.
+ // DO NOT CHANGE: suffix *MUST* be "log" for the rageshake server to not rename the file to something generic
+ filenameSuffix = "log",
76
+ // Keep a maximum of 1 week of log files.
77
numberOfFiles = 7 * 24,
78
)
79
}
0 commit comments