Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suppress message "Returning data to local variable" #13

Closed
idomic opened this issue Dec 22, 2022 · 2 comments · Fixed by #14
Closed

Suppress message "Returning data to local variable" #13

idomic opened this issue Dec 22, 2022 · 2 comments · Fixed by #14
Assignees

Comments

@idomic
Copy link

idomic commented Dec 22, 2022

Example:

In:

%%sql result <<
select col_name
from table_name

Out:

Returning data to local variable result
I don't want this message to clutter my output for the document I am producing. It would be useful to have a setting to suppress this message.

Current workaround for this issue (needs to be applied for each cell):

%%capture
%%sql result <<
select col_name
from table_name
@idomic idomic assigned neelasha23 and yafimvo and unassigned neelasha23 Dec 22, 2022
@edublancas
Copy link

edublancas commented Dec 22, 2022

these are things we got from the original repo, and I've seen many instances where it prints unnecessary stuff. why don't just delete the message? An option sounds like too much work

Alternatively, we might want to set a global "verbosity" option, which controls all of these messages.

@idomic
Copy link
Author

idomic commented Dec 22, 2022

Alternatively, we might want to set a global "verbosity" option, which controls all of these messages.

I don't think we're at that stage yet, let's remove the print and call it done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants