How do I save the value of the console into a file? I would like it so that when a user clicks a button it saves the logs from the console in to a file? I have tried find console.json
in the terminal after refreshing! How would I do this?
EDIT: This is the code that I have:
function save() {
(function(console){
console.save = function(data, filename){
console.log("Saving file")
if(!data) {
console.error('Console.save: No data')
return;
}
if(!filename) filename = 'console.json'
if(typeof data === "object"){
data = JSON.stringify(data, undefined, 4)
}
var blob = new Blob([data], {type: 'text/json'}),
e = document.createEvent('MouseEvents'),
a = document.createElement('a')
a.download = filename
a.href = window.URL.createObjectURL(blob)
a.dataset.downloadurl = ['text/json', a.download, a.href].join(':')
e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null)
a.dispatchEvent(e)
}
})(console)
}
I never see Saving file
in the console. How do I fix this?