0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-31 06:02:16 +00:00

Fix a logging error

This commit is contained in:
Scott Lahteine 2015-02-09 05:07:05 -08:00
parent ba24a09f24
commit 52c3cf6d34

View file

@ -143,7 +143,7 @@ var configuratorApp = (function(){
while((r = findDef.exec(txt)) !== null) {
boards_list[r[1]] = r[2].prePad(3, '  ') + " — " + r[4].replace(/\).*/, ')');
}
this.log("Loaded boards " + boards_list.join(' '), 3);
this.log("Loaded boards:\n" + Object.keys(boards_list).join('\n'), 3);
has_boards = true;
},