From 60aff959ae59382c3795f7d117e8a54cefc5c505 Mon Sep 17 00:00:00 2001 From: petersirka Date: Thu, 18 Apr 2024 15:15:54 +0200 Subject: [PATCH] Removed method `FlowStreamComponentIntance.log()`. --- flowstream.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/flowstream.js b/flowstream.js index 4c94086..9896a72 100644 --- a/flowstream.js +++ b/flowstream.js @@ -949,11 +949,6 @@ FP.ondebug = function(a, b, c, d) { this.main.$events.debug && this.main.emit('debug', this, a, b, c, d); }; -FP.onlog = function(a, b, c, d) { - // this == instance - this.main.$events.log && this.main.emit('log', this, a, b, c, d); -}; - function newlogger(callback) { var self = this; @@ -1599,7 +1594,6 @@ FP.initcomponent = function(key, component) { instance.dashboard = self.ondashboard; instance.status = self.onstatus; instance.debug = self.ondebug; - instance.log = self.onlog; instance.throw = self.onerror; instance.send = self.ontrigger; instance.newmessage = newmessage;