Replies: 1 comment
-
if I noop the console.log function before calling
I hope someone can illuminate, otherwise I'll consider this a bug and make an issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am unable to track down why this is happening but with a got post call I keep getting some unwanted response to the console when I run a particular command on a remote device. It's not part of the result of the resolved promise so I'm scratching my head going WTF?
this calls got post with a remote command. In this case
UrlFetch
which is specific to a tasmota device. This command will have the tasmota device pull a file from thefileurl
which is where I have a simple (nodejs based) static file server running.post command
when successful the output to the console is
but should only be
which is what is in
res
so how is it possible that this other "stuff" appears in the console. I didn't log it there. Does got post have some "verbose/debug" setting (by default) that sends other parts of the post response to the console? this appears to be info about the file that was fetched. If I send other commands likeUfsDelete
that extra "stuff" does not appear.Beta Was this translation helpful? Give feedback.
All reactions