Full Event Log

Full Event Log with Timestamps

A comprehensive event log that captures every upload event with precise timestamps, event type badges, and detailed data. Useful for debugging and understanding the upload lifecycle.

Drag & drop files here, or paste from clipboard
SELECT START PROGRESS COMPLETE ERROR QUEUE
0 events logged
// Attach all event handlers to build a full log
var events = [];
var uploader = AjaxUploader.getInstance('Uploader1');
uploader.on('select',       function(f) { addEvent('SELECT', f.length + ' files'); });
uploader.on('taskStart',    function(t) { addEvent('START', t.fileName); });
uploader.on('taskProgress', function(t) { addEvent('PROGRESS', t.percent + '%'); });
uploader.on('taskComplete', function(t) { addEvent('COMPLETE', t.fileName); });
uploader.on('taskError',    function(t,e) { addEvent('ERROR', e); });
uploader.on('queueRender',  function(q) { addEvent('QUEUE', q.length + ' items'); });