diff --git a/examples/classifier_compression/logging.conf b/examples/classifier_compression/logging.conf
index 66b7739e815627a6480fa88e4e846336d4120a10..429419b055a938c21fd501e8d847563b4e5cc509 100755
--- a/examples/classifier_compression/logging.conf
+++ b/examples/classifier_compression/logging.conf
@@ -5,7 +5,7 @@ keys: simple, time_simple
 keys: console, file
 
 [loggers]
-keys: root, app_cfg, distiller.thinning
+keys: root, app_cfg, distiller.thinning, apputils.model_summaries
 
 [formatter_simple]
 format: %(message)s
@@ -38,9 +38,17 @@ propagate: 0
 handlers: file
 
 # Example of adding a module-specific logger
-# Do not forget to add apputils.model_summaries to the list of keys in section [loggers]
+# Do not forget to add distiller.thinning to the list of keys in section [loggers]
 [logger_distiller.thinning]
 level: INFO
 qualname: distiller.thinning
 propagate: 0
 handlers: console, file
+
+# Example of adding a module-specific logger
+# Do not forget to add apputils.model_summaries to the list of keys in section [loggers]
+[logger_apputils.model_summaries]
+level: INFO
+qualname: apputils.model_summaries
+propagate: 0
+handlers: console, file