We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 064d7ac commit e9d11c5Copy full SHA for e9d11c5
1 file changed
dnscrypt-proxy/plugins.go
@@ -296,6 +296,7 @@ func (pluginsState *PluginsState) ApplyQueryPlugins(
296
defer pluginsGlobals.RUnlock()
297
for _, plugin := range *pluginsGlobals.queryPlugins {
298
if err := plugin.Eval(pluginsState, &msg); err != nil {
299
+ dlog.Debugf("Drops query: %v", err)
300
pluginsState.action = PluginsActionDrop
301
return packet, err
302
}
@@ -360,6 +361,7 @@ func (pluginsState *PluginsState) ApplyResponsePlugins(
360
361
362
for _, plugin := range *pluginsGlobals.responsePlugins {
363
364
+ dlog.Debugf("Drops response: %v", err)
365
366
367
0 commit comments