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

Update main.py #25

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Update main.py #25

wants to merge 1 commit into from

Conversation

x0x8x
Copy link
Contributor

@x0x8x x0x8x commented Oct 4, 2020

Proposing to use stack trace along with logging

Proposing to use stack trace along with logging
@Lonami
Copy link
Owner

Lonami commented Oct 4, 2020

try/except is used when you're going to handle the exception. If you do this:

try:
    error
except:
    pass

You are not handling the exception. You're ignoring it. In this case, try/except should not be used, and instead users should just let it error if they actually want useful information. I don't know why people add empty excepts so happily, that won't fix their errors, just silence them.

In any case, logging.exception('error!') inside except will do the same as traceback, so that module is not needed at all.

If you want to update the text to indicate that using empty except is a bad idea, go ahead, but otherwise I won't merge this suggestion.

@x0x8x
Copy link
Contributor Author

x0x8x commented Oct 9, 2020

logging.exception('error!')


If raise the exception an error will be printed even using pass
Correct me if I'm wrong...


logging.basicConfig(level=logging.WARNING)
logger = logging.getLogger('telethon')

try:
    error
except:
    logger.error
    raise

@x0x8x
Copy link
Contributor Author

x0x8x commented Oct 9, 2020


P.S. also:

repr(e)

@Lonami
Copy link
Owner

Lonami commented Oct 9, 2020

raise will re-raise the error so Telethon's logging can log it. print is the wrong way to go to log errors. Again I'll accept if we suggest the user to remove try/except in handlers to see errors, but not this. It's far too verbose and not the right thing to do.

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 this pull request may close these issues.

2 participants