We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please try to fill all questions below before submitting an issue.
i init logger like this :
class App : Application() { override fun onCreate() { super.onCreate() val formatStrategy: FormatStrategy = PrettyFormatStrategy.newBuilder() .methodCount(3) // (Optional) How many method line to show. Default 2 .tag("custom") .build() Logger.addLogAdapter(object:AndroidLogAdapter(formatStrategy){ override fun isLoggable(priority: Int, tag: String?): Boolean { return BuildConfig.DEBUG } }) val csvformatstrategy: FormatStrategy = CsvFormatStrategy.newBuilder() .tag("custom") .build() Logger.addLogAdapter(DiskLogAdapter(csvformatstrategy)) } }
and I have authorized read and write permissions,but it do not work, There is no logger folder in the external storage file directory
The text was updated successfully, but these errors were encountered:
Check my fork I added support for Disklog with SDK 30 -> Repo
Sorry, something went wrong.
No branches or pull requests
Please try to fill all questions below before submitting an issue.
in Application onCreate
all the time
i init logger like this :
and I have authorized read and write permissions,but it do not work,
There is no logger folder in the external storage file directory
The text was updated successfully, but these errors were encountered: