Teraz Grane
Brak utworu
MySpotify
0:00 0:00
Następny w kolejce
// Remote logging - console.log leci na serwer (function(){ const orig = console.log.bind(console); window._logbuf = []; console.log('[boot] BUILD 0828b remote-logging active'); console.log = function(){ const args = Array.prototype.slice.call(arguments); orig.apply(console, args); try { window._logbuf.push(args.map(function(a){ return (typeof a === 'object') ? JSON.stringify(a) : String(a); }).join(' ')); } catch(e){} }; setInterval(function(){ if (window._logbuf.length) { const b = window._logbuf; window._logbuf = []; fetch('/api/debug-log', {method:'POST', headers:{'Content-Type':'application/json'}, body: JSON.stringify({msg: b.join(' || ')})}).catch(function(){}); } }, 2000); })();
▶️

Dodaj do playlisty

+ Utwórz nową playlistę