diff --git a/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java b/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java
index 70852f14a0eac72b74ffd7ff105984ae374d6bc1..de011acccb088093f7df38dd97f59dcd05801bd1 100755
--- a/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java
+++ b/bbb-common-web/src/main/java/org/bigbluebutton/presentation/imp/SvgImageCreatorImp.java
@@ -78,7 +78,7 @@ public class SvgImageCreatorImp implements SvgImageCreator {
             }
 
             if(pHandler.isCommandTimeout()) {
-                log.error("Command execution (convertImgToSvg) exceeded the {} secs limit for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
+                log.error("Command execution (convertImgToSvg) exceeded the {} secs timeout for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
             }
 
             // Use the intermediate PDF file as source
@@ -107,7 +107,7 @@ public class SvgImageCreatorImp implements SvgImageCreator {
         }
 
         if(pHandler.isCommandTimeout()) {
-            log.error("Command execution (convertPdfToSvg) exceeded the {} secs limit for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
+            log.error("Command execution (convertPdfToSvg) exceeded the {} secs timeout for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
         }
 
         if (!done) {
@@ -172,7 +172,7 @@ public class SvgImageCreatorImp implements SvgImageCreator {
             }
 
             if(pngHandler.isCommandTimeout()) {
-                log.error("Command execution (convertPdfToPng) exceeded the {} secs limit for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
+                log.error("Command execution (convertPdfToPng) exceeded the {} secs timeout for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
             }
 
             if(tempPng.length() > 0) {
@@ -191,7 +191,7 @@ public class SvgImageCreatorImp implements SvgImageCreator {
                 }
 
                 if(svgHandler.isCommandTimeout()) {
-                    log.error("Command execution (convertPngToSvg) exceeded the {} secs limit for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
+                    log.error("Command execution (convertPngToSvg) exceeded the {} secs timeout for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
                 }
 
                 done = svgHandler.isCommandSuccessful();
@@ -215,7 +215,7 @@ public class SvgImageCreatorImp implements SvgImageCreator {
                     }
 
                     if (namespaceHandler.isCommandTimeout()) {
-                        log.error("Command execution (addNameSpaceToSVG) exceeded the {} secs limit for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
+                        log.error("Command execution (addNameSpaceToSVG) exceeded the {} secs timeout for {} page {}.", convPdfToSvgTimeout, pres.getName(), page);
                     }
                 }
             }