diff --git a/wolf_scripts/license_manager.sh b/wolf_scripts/license_manager.sh
index 2e90fb0ad205c6a94908aecb873fd83ebe8804c6..78adf75422f0e5a70b4513a94f2dd06abdd2c6fc 100755
--- a/wolf_scripts/license_manager.sh
+++ b/wolf_scripts/license_manager.sh
@@ -4,6 +4,7 @@
 #
 # This script is used for managing the license headers of code files (.h, .c, .cpp, .hpp)
 # This file is automatically called by the CI in gitlab.
+echo "==== WOLF license_manager script ===="
 
 line_start_mark="//--------LICENSE_START--------"
 line_end_mark="//--------LICENSE_END--------"
@@ -142,4 +143,4 @@ do
     ( echo ${line_start_mark}$'\n//'; cat ${license}; echo $'//\n'${line_end_mark}; cat $i ) > temp_file
     mv temp_file $i
   fi
-done
\ No newline at end of file
+done