[frontend]: fix reporInfo in prototype

This commit is contained in:
Jesús
2021-12-16 18:19:15 -05:00
parent 5d753351c5
commit 519b7e64e7

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