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
Hey there,
I've been using your package lately and I noticed that before the logger flushes a message, it is not seeking for the end of the file.
For me it was an issue because I use one more stream to write to the same file, and that other stream actually handles the seek before writing.
It is really a very small change and it might help others to.
The addition is to use seekend(handler.io) in the beginning of emit function here
seekend(handler.io)
Memento.jl/src/handlers.jl
Line 206 in aea16b6
The text was updated successfully, but these errors were encountered:
Actually, more like
if typeof(handler.io) <: IOStream seekend(handler.io) end
Sorry, something went wrong.
No branches or pull requests
Hey there,
I've been using your package lately and I noticed that before the logger flushes a message,
it is not seeking for the end of the file.
For me it was an issue because I use one more stream to write to the same file, and that other stream actually
handles the seek before writing.
It is really a very small change and it might help others to.
The addition is to use
seekend(handler.io)
in the beginning of emit function hereMemento.jl/src/handlers.jl
Line 206 in aea16b6
Let's say line 207
The text was updated successfully, but these errors were encountered: