fix: Remove console statement
diff --git a/erpnext/hr/doctype/upload_attendance/upload_attendance.js b/erpnext/hr/doctype/upload_attendance/upload_attendance.js
index e9c2031..9df2948 100644
--- a/erpnext/hr/doctype/upload_attendance/upload_attendance.js
+++ b/erpnext/hr/doctype/upload_attendance/upload_attendance.js
@@ -42,7 +42,6 @@
 		var $log_wrapper = $(this.frm.fields_dict.import_log.wrapper).empty();
 
 		frappe.realtime.on('import_attendance', (data) => {
-			console.log(data)
 			if (data.progress) {
 				this.frm.dashboard.show_progress('Import Attendance', data.progress / data.total * 100,
 					__('Importing {0} of {1}', [data.progress, data.total]));