We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
duplicate rows show out, what can i do? thank you
from absl import app, flags import coloredlogs import logging def main(_args): logger = logging.getLogger(__name__) coloredlogs.install(level='DEBUG', logger=logger, fmt='%(asctime)s [%(filename)s:%(lineno)d] %(levelname)-8s %(message)s', # datefmt='%Y-%m-%d %H:%I:%S', datefmt='%H:%I:%S', isatty=True ) logger.info("this is an informational message") logger.warning("this is an informational message") logger.fatal("this is an informational message") logger.error("this is an informational message") logger.debug(logger.__dir__) if __name__ == "__main__": try: app.run(main) # main(1) except Exception as ex: print(ex) except SystemExit: pass
The text was updated successfully, but these errors were encountered:
No branches or pull requests
duplicate rows show out, what can i do? thank you
The text was updated successfully, but these errors were encountered: