Consider the code below:
Glide.with(<your_context>)
.load(<remote_file_url, local_file_path>)
.into(<imageview>);
Above Glide code is written in lots of file. Simply I want to log my remote_file_url or local_file_path in logcat. But I don't want to change the code in every file.
Is Glide allowing logging? If it allows, then I need a simple central way to turn on glide logging.
For Reference: I want the way like Retrofit + okhttp
allow. In OkHttp
, I just have to add interceptor at one location and it will log information about each webservice call without writing any other additional code.