[frontend]: fix reporInfo in prototype

This commit is contained in:
Jesús 2021-12-16 18:19:15 -05:00
parent 5d753351c5
commit 519b7e64e7
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -518,6 +518,9 @@ Stream.prototype.reportWarning = function(...args) {
Stream.prototype.reportError = function(...args) {
reportError(String(this.streamType) + ':', ...args);
}
Stream.prototype.reportInfo = function(...args) {
reportInfo(String(this.streamType) + ':', ...args);
}
// Utility functions