diff --git a/pipelines/_steps/quota/check.go b/pipelines/_steps/quota/check.go
index 8bba9b90c652070edb4a954456c56f9b32769ac3..3b5d53ce60231af83631ecdc430e52e44704b24e 100644
--- a/pipelines/_steps/quota/check.go
+++ b/pipelines/_steps/quota/check.go
@@ -36,6 +36,7 @@ func Check(ctx rcontext.RequestContext, userId string, quotaType Type) error {
 	if count < limit {
 		return nil
 	} else {
+		ctx.Log.Debugf("Quota %d current=%d limit=%d", int64(quotaType), count, limit)
 		return common.ErrQuotaExceeded
 	}
 }
@@ -72,6 +73,7 @@ func CanUpload(ctx rcontext.RequestContext, userId string, bytes int64) error {
 	}
 
 	if (count + bytes) > limit {
+		ctx.Log.Debugf("Quota %s current=%d bytes=%d limit=%d", "CanUpload", count, bytes, limit)
 		return common.ErrQuotaExceeded
 	}