diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c
index 580c52264d9ec22d612a8897492299e001497a8d..8398dd9ab677b9a7c5e4bc010857495401558771 100644
--- a/libavcodec/ituh263dec.c
+++ b/libavcodec/ituh263dec.c
@@ -303,7 +303,7 @@ static int h263p_decode_umotion(MpegEncContext * s, int pred)
    code >>= 1;
 
    code = (sign) ? (pred - code) : (pred + code);
-   ff_dlog(s->avctx,"H.263+ UMV Motion = %d\n", code);
+   ff_tlog(s->avctx,"H.263+ UMV Motion = %d\n", code);
    return code;
 
 }