Changelog

This commit is contained in:
Benoit Marty 2021-07-23 11:25:56 +02:00
parent 0c211d7b1e
commit adabb31688
2 changed files with 2 additions and 1 deletions

1
changelog.d/3723.misc Normal file
View File

@ -0,0 +1 @@
Add tags in the log, especially for VoIP, but can be used for other features in the future

View File

@ -24,7 +24,7 @@ package org.matrix.android.sdk.api.logger
*/
open class LoggerTag(_value: String, parentTag: LoggerTag? = null) {
object VOIP : LoggerTag("VOIP", null)
object VOIP : LoggerTag("VOIP")
val value: String = if (parentTag == null) {
_value