Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-08-28 19:15:36 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-08-28 19:15:36 +0300
commit82474c2dc4333f32f03cb0258f0371ce8059f2da (patch)
tree85e062c46ca079b6a9c84e7c7141c1010b702187 /js
parent07ffeca5acfb0da379c81f6ee2ded0f6fa3ec07e (diff)
Add scan duration
Diffstat (limited to 'js')
-rw-r--r--js/scan.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/scan.js b/js/scan.js
index e339bc4..1412c08 100644
--- a/js/scan.js
+++ b/js/scan.js
@@ -90,6 +90,7 @@
$.getJSON(self.filesUrl, function(data) {
console.log("Create scan header.");
$('#section-loading').remove();
+ console.log("Scanned " + data.number_of_files + " files in " + data.scan_duration + " seconds.");
self.$el.append(self._createScanHeader(data.sequences.length));
self.sequencesToScan = data.sequences;
});