Hi All! I made a mistake calling this: ```meltano...
# troubleshooting
j
Hi All! I made a mistake calling this:
Copy code
meltano config meltano set cli log_level env
And now I am in an endless loop of running into this error:
Copy code
Need help fixing this problem? Visit <http://melta.no/> for troubleshooting steps, or to
join our friendly Slack community.

Unable to configure handler 'console'
Can someone help me?
e
Hi Justin! I assume you've tried to revert the change with something like:
Copy code
meltano config meltano set cli log_level info
?
j
Correct, instead of info, i was using debug
e
Ok, can you try
Copy code
MELTANO_CLI_LOG_LEVEL=debug meltano config meltano set cli log_level debug
j
I got this:
Copy code
MELTANO_CLI_LOG_LEVEL=debug : The term 'MELTANO_CLI_LOG_LEVEL=debug' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
e
Oh you're on Windows, let me check how you set an env var with powershell
j
I tried to break it down to:
Copy code
meltano config meltano set cli log_level debug
and stilll getting the previous error
Yeah. Sorry about that
e
Copy code
$env:MELTANO_CLI_LOG_LEVEL = 'debug'
meltano config meltano set cli log_level info
Remove-Item Env:\MELTANO_CLI_LOG_LEVEL
j
Ran and result:
Copy code
Meltano setting 'cli.log_level' was set in `.env`: 'info'
Current value is still: 'info' (from the environment)
e
Yeah, and that should've fixed your problem
j
Appreciate it Edgar!
e
np!
j
Actually, one more question. I am getting debugging events. How do I remove that?
e
You can make logging less verbose with
Copy code
meltano config meltano set cli log_level warning