From 20bb441a91b2b63f47d14a32f02187788d093d83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89der=20F=2E=20Zulian?= Date: Tue, 18 Oct 2016 16:30:31 +0200 Subject: [PATCH] Informative message added. --- DRAMSys/analyzer/scripts/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DRAMSys/analyzer/scripts/plots.py b/DRAMSys/analyzer/scripts/plots.py index f953c4f4..ef672088 100755 --- a/DRAMSys/analyzer/scripts/plots.py +++ b/DRAMSys/analyzer/scripts/plots.py @@ -165,7 +165,7 @@ def generatePlots(pathToTrace): cursor.execute(" SELECT WindowSize FROM GeneralInfo") windowSize = float(cursor.fetchone()[0]) if(windowSize == 0): - outputFiles = "No output file created" + outputFiles = "No output file created. Check WindowSize and EnableWindowing configs." else: cursor.execute(" SELECT TraceEnd FROM GeneralInfo ") traceEnd = float(cursor.fetchone()[0])