8
0
فهرست منبع

Other: Improved error message for OT errors.

Szymon Cofalik 7 سال پیش
والد
کامیت
ac03bfaf1f
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/ckeditor5-engine/src/model/operation/transform.js

+ 1 - 1
packages/ckeditor5-engine/src/model/operation/transform.js

@@ -99,7 +99,7 @@ export function transform( a, b, context = {} ) {
 
 		return transformationFunction( a, b, context );
 	} catch ( e ) {
-		log.error( 'Error during operation transformation!' );
+		log.error( 'Error during operation transformation!', e.message );
 		log.error( 'Transformed operation', a );
 		log.error( 'Operation transformed by', b );
 		log.error( 'context.aIsStrong', context.aIsStrong );