logException method
Implementation
void logException(GQLException exception, StackTrace stackTrace) {
assert(() {
log('🔥 EXCEPTION CAUGHT:');
log('Type: ${exception.runtimeType}');
log('Message: $exception');
log('🔥 STACK TRACE:');
log('$stackTrace');
log('🔥 END DEBUG INFO');
return true;
}());
}