File size: 885 Bytes
e5b8fac |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
from ...components.fields import Field, ANY
from ...components.colors import colorize, ConsoleColor
from ...components.tree import TREE_DEBUG
import logging
class ShowDataDebug:
CATEGORY = TREE_DEBUG
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"ANY": Field.any(),
},
}
RETURN_TYPES = (ANY, "STRING", )
RETURN_NAMES = ("SAME AS INPUT", "STRING", )
OUTPUT_NODE = True
IS_CHANGED = True
FUNCTION = "func"
def func(self, ANY = None):
out = ANY
try:
out = str(out)
logging.info(colorize(f"[DEBUG]: {ANY}", ConsoleColor.blue.value))
except Exception as e:
logging.info(colorize(f"[DEBUG-EXCEPTION]: {e}", ConsoleColor.bold_red.value))
out = str(e)
return {"ui": {"text": [out]}, "result": (ANY, out)}
|