Now logs are also displayed in console.

This commit is contained in:
Quentin Decaunes 2019-02-28 18:22:19 +01:00
parent fcff5e365b
commit d7416706fc

View File

@ -148,4 +148,5 @@ function askingForRyzenAdjExecutablePath() {
function appendLog(message) {
var log_area = document.getElementById('logs');
log_area.value += message + "\n";
console.log(message);
}