diff --git a/libswresample/rematrix.c b/libswresample/rematrix.c
index 87fd35a4773616a508873311799ffde42edbd07e..5c34e11c1820c006d0cc874fcf17f6b4f910efe2 100644
--- a/libswresample/rematrix.c
+++ b/libswresample/rematrix.c
@@ -217,9 +217,9 @@ int swr_rematrix_init(SwrContext *s){
     }
         for(i=0; i<av_get_channel_layout_nb_channels(s->out_ch_layout); i++){
             for(j=0; j<av_get_channel_layout_nb_channels(s->in_ch_layout); j++){
-                av_log(NULL, AV_LOG_ERROR, "%f ", s->matrix[i][j]);
+                av_log(NULL, AV_LOG_DEBUG, "%f ", s->matrix[i][j]);
             }
-            av_log(NULL, AV_LOG_ERROR, "\n");
+            av_log(NULL, AV_LOG_DEBUG, "\n");
         }
     return 0;
 }