diff --git a/avconv.c b/avconv.c
index 5d4daba5cd6e6f5fc9d571780d2e4c8c1abb55b9..866b90ca7db84d08d84200ee4e5051219e1be226 100644
--- a/avconv.c
+++ b/avconv.c
@@ -515,7 +515,9 @@ static void do_video_out(AVFormatContext *s,
         in_picture->pts != AV_NOPTS_VALUE &&
         in_picture->pts < ost->sync_opts) {
         nb_frames_drop++;
-        av_log(NULL, AV_LOG_VERBOSE, "*** drop!\n");
+        av_log(NULL, AV_LOG_WARNING,
+               "*** dropping frame %d from stream %d at ts %"PRId64"\n",
+               ost->frame_number, ost->st->index, in_picture->pts);
         return;
     }