blob: 3a2d52b3abd31e9296ff90663ceee8d392de732c [file] [log] [blame]
// Appends a plaintext message to the body, followed by a new line.
function logText(message) {
document.body.appendChild(document.createTextNode(message));
document.body.appendChild(document.createElement("br"));
}