diff --git a/ChangeLog b/ChangeLog
index aba40b26e58b20eca1a5afbd647c8f4cf1594b49..0ef7fa2040e9e767a3e62dd74e32b4022c112a78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -188,6 +188,7 @@ removed. You must now use the 6 parameters way. See file modMyModule.class.php f
 
 
 ***** ChangeLog for 3.5.5 compared to 3.5.4 *****
+Fix: Holiday module was broken. Initializaion of amount of holidays failed.
 Fix: [ bug #1523 ] suite bug #1334 : filtre et ordre de tri conjoints ne s'appliquent pas.
 Fix: Fusion PDF button on unpaid invoice is no more displayed 
 Fix: Unpaid invoice launch fusion PDF action even if it is only search (with enter keyboard input instead of lens click)
diff --git a/htdocs/holiday/class/holiday.class.php b/htdocs/holiday/class/holiday.class.php
index aac5464fea5882d22c14f6730479cc890b124fe2..b88547729c11da81885db8c37a05bddfe66e4989 100644
--- a/htdocs/holiday/class/holiday.class.php
+++ b/htdocs/holiday/class/holiday.class.php
@@ -1307,6 +1307,7 @@ class Holiday extends CommonObject
             } else {
                 // Erreur SQL
                 $this->error="Error ".$this->db->lasterror();
+                dol_syslog(get_class($this)."::verifNbUsers ".$this->error, LOG_ERR);
                 $this->db->rollback();
                 return -1;
             }
@@ -1347,6 +1348,7 @@ class Holiday extends CommonObject
             } else {
                 // Erreur SQL
                 $this->error="Error ".$this->db->lasterror();
+                dol_syslog(get_class($this)."::verifNbUsers ".$this->error, LOG_ERR);
                 $this->db->rollback();
                 return -1;
             }