mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-11 11:46:21 +00:00
Issue #707 Debugger for logging messages
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.jpexs.decompiler.flash.debugger {
|
||||
import flash.system.Capabilities;
|
||||
|
||||
public function debugSocket(msg):*{
|
||||
//only on webpages or activex
|
||||
if(Capabilities.playerType == 'PlugIn'
|
||||
|| Capabilities.playerType == 'ActiveX'){
|
||||
DebugConnection.writeMsg(msg);
|
||||
}
|
||||
return msg;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user