diff --git a/patches/applyPatches.sh b/patches/applyPatches.sh
index 8d2decbd8ea342fe8dabf194a033027989d52bd2..3e2ebd248e9df5207eb27d2a34ed040cc0473932 100755
--- a/patches/applyPatches.sh
+++ b/patches/applyPatches.sh
@@ -24,8 +24,12 @@
 # ** end header
 #
 
-#apply all available patches.
+###############################################################################
+#                         Apply all available patches                         #
+###############################################################################
+
 set -e
+
 if [ -z "$UTILSPATH" ]; then
     UTILSPATH=$(realpath "$(dirname $0)/../utils")
     export UTILSPATH
@@ -38,6 +42,7 @@ PATCHES="./patch*/patch.sh"
 
 for p in $PATCHES
 do
+    echo "$p"
     $p "$@" --patch=$p
 done