From 64d3afbb1cfeb250b788d8007efe2e93ce997b92 Mon Sep 17 00:00:00 2001
From: Gustavo Trott <gustavo@trott.com.br>
Date: Wed, 31 Mar 2021 14:19:47 -0300
Subject: [PATCH] Changes timeout error text

---
 .../presentation/imp/SvgImageCreatorImp.java           | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

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 70852f14a0..de011acccb 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);
                     }
                 }
             }
-- 
GitLab