timber-logging-to-file
Simple library which save timber logs to file.
Add dependency to gradle
implementation("com.github.markowanga:timber-logging-to-file:1.1.0")
Basic usage of library
Library provide simple Timber.Tree
called LogToFileTimberTree
.
Below example shows how to plant LogToFileTimberTree
:
fun initLogger() {
Timber.plant(
LogToFileTimberTree(LogManager.getExternalLogsDirectory(this))
)
}
Encrypted logs
Sometimes logs contain any secure data and user cannot have access to read it. Library contain
simple TextCrypt
class which can encrypt logs before append to file. There are two TextCrypters
implemented in library, of course the interface can be implemented with other custom crypt methods.
Logs are saved to file line by line, it means that each line should be decoded separately.
Base64TextCrypt
The simple encryption — easy to decode, but simple user can’t read it.
Example of use:
fun initLogger() {
Timber.plant(
LogToFileTimberTree(
LogManager.getExternalLogsDirectory(this),
Base64TextCrypt()
)
)
}
CipherTextCrypt
More advanced TextCrypt. It uses javax.crypto.Cipher
with AES/ECB/PKCS5Padding
transformation.
Logs are protected by password.
Example of use:
fun initLogger() {
Timber.plant(
LogToFileTimberTree(
LogManager.getExternalLogsDirectory(this),
CipherTextCrypt("test1234test1234")
)
)
}