From 1b7ec748efda9aff3324001c7d62756424f78f2e Mon Sep 17 00:00:00 2001 From: "Sridhar K. N. Rao" Date: Wed, 5 Dec 2018 21:01:07 +0530 Subject: VSPERF: Timestamp Variable. LOG_TIMESTAMP name was misspelled. This patch fixes it. This variable is only used by collectd-collector Change-Id: I172dd96b717168cf3da76be6e631cc1d01af8663 Signed-off-by: Sridhar K. N. Rao --- vsperf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vsperf b/vsperf index 5c1d88a1..4c41a7b1 100755 --- a/vsperf +++ b/vsperf @@ -237,7 +237,7 @@ def configure_logging(level): """ date = datetime.datetime.fromtimestamp(time.time()) timestamp = date.strftime('%Y-%m-%d_%H-%M-%S') - settings.setValue('LOG_TIMEMSTAMP', timestamp) + settings.setValue('LOG_TIMESTAMP', timestamp) name, ext = os.path.splitext(settings.getValue('LOG_FILE_DEFAULT')) rename_default = "{name}_{uid}{ex}".format(name=name, uid=timestamp, ex=ext) log_file_default = os.path.join( -- cgit 1.2.3-korg