From d7416706fc64f4a00fe76408238fda9552c3988b Mon Sep 17 00:00:00 2001 From: Quentin Decaunes Date: Thu, 28 Feb 2019 18:22:19 +0100 Subject: [PATCH] Now logs are also displayed in console. --- js/methods.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/methods.js b/js/methods.js index 19c4ae0..5822a99 100644 --- a/js/methods.js +++ b/js/methods.js @@ -148,4 +148,5 @@ function askingForRyzenAdjExecutablePath() { function appendLog(message) { var log_area = document.getElementById('logs'); log_area.value += message + "\n"; + console.log(message); } \ No newline at end of file