In Glide 4.0 RC , which is possible through Glide Configuration : you can configure the level of logging Glidethrough GlideBuilder#setLogLevel(int).
Having MyGlideModule.java:
@GlideModule
public class MyGlideModule extends AppGlideModule {
@Override
public void applyOptions(Context context, GlideBuilder builder) {
builder.setLogLevel(Log.VERBOSE);
}
}
Then you can see the following registration console:

For older versions ( 3.x), as indicated in the Debugging Workflow :
To find out how and when the internal Glide engine finds the required resources, you can enable logging:
adb shell setprop log.tag.Engine VERBOSE
adb shell setprop log.tag.EngineJob VERBOSE
adb shell setprop log.tag.DecodeJob VERBOSE
The following message will appear:

You can only enable logging Engineif you are not interested in other logs.
source
share