-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
No but yes...
When debugging with console output its often like (not language specific)
log("1 + 2: " + ((1+2) as string))
log("i: " + (i as string))
log("i: " + (i as string) + "\t1+2: " + (3 as string) + "\ti+6(" + (i as string) + "+6: " + ((i+6) as string))
What would be great is a build in which does this automatically like:
debug(1 + 2)
debug(i)
debug(i, 1+2, i+6)
output:
"1 + 2": 3
"i": 4
"i": 4
"1 + 2": 3
"i + 6"(4 + 6): 10
Describe the solution you'd like
Give a calculation or variable into function, and the function prints what arguments are given plus the solution/calculation/value/etc.
Describe alternatives you've considered
idk
Additional context
debugging sucks
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request