diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 8eb20fe07b06367d8d05852027ddae399aca1486..46293524fb87c1fe98c3e804d8cb5fa8603a3a90 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -1991,7 +1991,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
     }
 
     if(avctx->debug&FF_DEBUG_PICT_INFO)
-        av_log(avctx, AV_LOG_DEBUG, "keyframe:%d coder:%d\n", p->key_frame, f->ac);
+        av_log(avctx, AV_LOG_DEBUG, "ver:%d keyframe:%d coder:%d ec:%d slices:%d\n",
+               f->version, p->key_frame, f->ac, f->ec, f->slice_count);
 
     buf_p= buf + buf_size;
     for(i=f->slice_count-1; i>=0; i--){