mirror of
https://github.com/element-hq/element-android
synced 2024-11-24 10:25:35 +03:00
Changelog
This commit is contained in:
parent
0c211d7b1e
commit
adabb31688
2 changed files with 2 additions and 1 deletions
1
changelog.d/3723.misc
Normal file
1
changelog.d/3723.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Add tags in the log, especially for VoIP, but can be used for other features in the future
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue