-
Notifications
You must be signed in to change notification settings - Fork 191
Issue with logger s configuration subroutine #252
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
Conversation
@jvdp1 the two changes look good to me. Sorry for missing that problem. |
It looks to me like your changes are for a PR against the |
Thank you for the approcal. |
Will |
In you local directory, you could do: git checkout logger-safe-async-io
git fetch upstream master #assuming upstream points to github.com/fortran-lang/stdlib
git merge --no-ff upstream/master
git push origin logger-safe-async-io |
gives me
|
It seems you tried:
git merge --no-ff upstream/stdlib
instead of
git merge --no-ff upstream/master
Le mer. 25 nov. 2020 à 20:34, William B. Clodius <notifications@github.com>
a écrit :
… git merge --no-ff upstream/master
gives me
merge: upstream/stdlib - not something we can merge
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#252 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD5RO7FW5DKXOI7KMQYVC4TSRVL2VANCNFSM4UB7SKNQ>
.
|
All of the following gives the same result
|
Is |
|
Ok. I understand. Your
|
Thanks its merged into |
@wclodius2
I found a small issue within
stdlib_logger
. If the subroutineconfiguration
is called and no units are associated with the logger,self % log_units
is not allocated, and leads to a segfault (in debug mode) when the program tries to use it for allocatinglog_units
.With my proposition,
log_units
will be a zero-sized array in such situations (as it is tested like that in the tests).