From 105ca88aef04c6d0d38e6517c0d225b4bd9987a8 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Thu, 28 May 2020 14:02:09 -0400 Subject: [PATCH] fix(core): improve debugging on invalid group sources --- SoObjects/Appointments/SOGoAppointmentFolder.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoObjects/Appointments/SOGoAppointmentFolder.m b/SoObjects/Appointments/SOGoAppointmentFolder.m index 9dc48dbe8..5ee33f5fc 100644 --- a/SoObjects/Appointments/SOGoAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoAppointmentFolder.m @@ -464,7 +464,7 @@ static Class iCalEventK = nil; } else { - [self errorWithFormat: @"Inconsistency error - got group identifier (%@) from a source (%@) that does not support groups.", theIdentifier, [dict objectForKey: @"SOGoSource"]]; + [self errorWithFormat: @"Inconsistency error - got group identifier (%@) from a source (%@) that does not support groups (%@).", theIdentifier, [dict objectForKey: @"SOGoSource"], NSStringFromClass([source class])]; return NO; } }