Skip to content

Commit a28d21b

Browse files
authored
Merge pull request #198 from 1951FDG/FileLoggingTree-subclass
Change visibility modifier for _lastLogEntry
2 parents dc4d09d + 554b940 commit a28d21b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

LogcatCoreLib/src/main/java/info/hannes/timber/FileLoggingTree.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ open class FileLoggingTree(externalCacheDir: File, context: Context? = null, fil
7777

7878
private val LOG_TAG = FileLoggingTree::class.java.simpleName
7979
private var logImpossible = false
80-
private val _lastLogEntry = MutableLiveData<Event<String>>()
80+
protected val _lastLogEntry = MutableLiveData<Event<String>>()
8181
val lastLogEntry: LiveData<Event<String>>
8282
get() = _lastLogEntry
8383
}

0 commit comments

Comments
 (0)