We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2833d50 + f6690d9 commit ac93387Copy full SHA for ac93387
src/ckeditor/ckeditor.component.ts
@@ -391,6 +391,9 @@ export class CKEditorComponent<TEditor extends Editor = Editor> implements After
391
// `<ckeditor (error)="onError(...)"></ckeditor>`.
392
if ( hasObservers( this.error ) ) {
393
this.ngZone.run( () => this.error.emit( e ) );
394
+ } else {
395
+ // Print error to the console when there are no subscribers to the `error` event.
396
+ console.error( e );
397
}
398
};
399
const element = document.createElement( this.tagName );
0 commit comments