You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2016/09/08 19:25:09 UTC

svn commit: r1759890 - /jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/HtmlTemplateExporter.java

Author: pmouawad
Date: Thu Sep  8 19:25:09 2016
New Revision: 1759890

URL: http://svn.apache.org/viewvc?rev=1759890&view=rev
Log:
Add graphId in logs

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/HtmlTemplateExporter.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/HtmlTemplateExporter.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/HtmlTemplateExporter.java?rev=1759890&r1=1759889&r2=1759890&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/HtmlTemplateExporter.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/report/dashboard/HtmlTemplateExporter.java Thu Sep  8 19:25:09 2016
@@ -217,7 +217,7 @@ public class HtmlTemplateExporter extend
                 // discrimination and excludes
                 // controllers
                 LOG.warn(ReportGeneratorConfiguration.EXPORTER_KEY_SHOW_CONTROLLERS_ONLY
-                        + " is set while the graph excludes controllers.");
+                        + " is set while the graph "+graphId+" excludes controllers.");
                 return false;
             } else {
                 if (filterPattern != null) {
@@ -264,8 +264,8 @@ public class HtmlTemplateExporter extend
                         }
                         if (!matches) {
                             // None series matches the pattern
-                            LOG.warn("No serie matches the "
-                                    + ReportGeneratorConfiguration.EXPORTER_KEY_SERIES_FILTER);
+                            LOG.warn("No serie matches the series_filter:"
+                                    + ReportGeneratorConfiguration.EXPORTER_KEY_SERIES_FILTER + " in graph:"+graphId);
                             return false;
                         }
                     }