int xe_guc_exec_queue_reset_handler(struct xe_guc *guc, u32 *msg, u32 len)
 {
+       struct xe_gt *gt = guc_to_gt(guc);
        struct xe_device *xe = guc_to_xe(guc);
        struct xe_exec_queue *q;
        u32 guc_id = msg[0];
        if (unlikely(!q))
                return -EPROTO;
 
-       drm_info(&xe->drm, "Engine reset: guc_id=%d", guc_id);
+       xe_gt_info(gt, "Engine reset: engine_class=%s, logical_mask: 0x%x, guc_id=%d",
+                  xe_hw_engine_class_to_str(q->class), q->logical_mask, guc_id);
 
        /* FIXME: Do error capture, most likely async */
 
 int xe_guc_exec_queue_memory_cat_error_handler(struct xe_guc *guc, u32 *msg,
                                               u32 len)
 {
+       struct xe_gt *gt = guc_to_gt(guc);
        struct xe_device *xe = guc_to_xe(guc);
        struct xe_exec_queue *q;
        u32 guc_id = msg[0];
        if (unlikely(!q))
                return -EPROTO;
 
-       drm_dbg(&xe->drm, "Engine memory cat error: guc_id=%d", guc_id);
+       xe_gt_dbg(gt, "Engine memory cat error: engine_class=%s, logical_mask: 0x%x, guc_id=%d",
+                 xe_hw_engine_class_to_str(q->class), q->logical_mask, guc_id);
+
        trace_xe_exec_queue_memory_cat_error(q);
 
        /* Treat the same as engine reset */