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
Hi, thanks for this lib!
I found that a log.Print is used at init: https://github.com/sugarme/tokenizer/blob/master/init.go#L21 which I can't avoid.
log.Print
My application is using stdout & stderr to communicate. Do you mind remove this log print and move to slog for finer log level control?
slog
Thanks.
The text was updated successfully, but these errors were encountered:
Also, the use of log.Fatal breaks normal flow. I think error should be returned: https://github.com/sugarme/tokenizer/blob/master/tokenizer.go#L207
log.Fatal
Sorry, something went wrong.
@jackielii,
Thanks for the report. Would love to have your PR as well. Cheers.
No branches or pull requests
Hi, thanks for this lib!
I found that a
log.Print
is used at init: https://github.com/sugarme/tokenizer/blob/master/init.go#L21 which I can't avoid.My application is using stdout & stderr to communicate. Do you mind remove this log print and move to
slog
for finer log level control?Thanks.
The text was updated successfully, but these errors were encountered: