Skip to content

Commit ac93387

Browse files
authored
Merge pull request #457 from ckeditor/ck/6775
Feature: Print editor errors in console if there is no (error) observer.
2 parents 2833d50 + f6690d9 commit ac93387

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ckeditor/ckeditor.component.ts

+3
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,9 @@ export class CKEditorComponent<TEditor extends Editor = Editor> implements After
391391
// `<ckeditor (error)="onError(...)"></ckeditor>`.
392392
if ( hasObservers( this.error ) ) {
393393
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 );
394397
}
395398
};
396399
const element = document.createElement( this.tagName );

0 commit comments

Comments
 (0)