You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/11/21 19:29:29 UTC

[commons-daemon] branch master updated: [DAEMON-414] prunsrv uses its log is before it is initialized.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-daemon.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a46539  [DAEMON-414] prunsrv uses its log is before it is initialized.
8a46539 is described below

commit 8a46539bd0a7fe42fab667a249a1c59906faf9ab
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Nov 21 14:29:25 2019 -0500

    [DAEMON-414] prunsrv uses its log is before it is initialized.
---
 src/changes/changes.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index f1163e8..03bb314 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -39,7 +39,10 @@
   </properties>
   <body>
     <release version="1.2.3" date="TBD" description="Bug fix release">
-    </release<
+      <action issue="DAEMON-414" type="fix" dev="ggregory" due-to="Gary Gregory">
+        prunsrv uses its log is before it is initialized.
+      </action>
+    </release>
     <release version="1.2.2" date="2019-10-04" description="Bug fix release">
       <action issue="DAEMON-408" type="fix" dev="markt">
         Procrun. Correct a regression in the fix for DAEMON-401 that prevented


Re: [commons-daemon] branch master updated: [DAEMON-414] prunsrv uses its log is before it is initialized.

Posted by Mark Thomas <ma...@apache.org>.
On 22/11/2019 18:11, Gary Gregory wrote:
> On Fri, Nov 22, 2019 at 12:29 PM Mark Thomas <ma...@apache.org> wrote:
> 
>> On 21/11/2019 19:29, ggregory@apache.org wrote:
>>> This is an automated email from the ASF dual-hosted git repository.
>>>
>>> ggregory pushed a commit to branch master
>>> in repository https://gitbox.apache.org/repos/asf/commons-daemon.git
>>>
>>>
>>> The following commit(s) were added to refs/heads/master by this push:
>>>      new 8a46539  [DAEMON-414] prunsrv uses its log is before it is
>> initialized.
>>> 8a46539 is described below
>>>
>>> commit 8a46539bd0a7fe42fab667a249a1c59906faf9ab
>>> Author: Gary Gregory <ga...@gmail.com>
>>> AuthorDate: Thu Nov 21 14:29:25 2019 -0500
>>
>>
>> Sorry, this needs to be reverted.
>>
>> You've moved the logging initialisation above the code that reads the
>> logging configuration. This breaks the logging.
>>
>> A better fix would probably be to change the two lines that write to the
>> log file before it is ready to write to stderr instead.
>>
> 
> Reverted. Thank you for reviewing.

Thanks, and sorry I missed that first time around.

> Two items:
> 
> 1) There is a LOT of logging I feel we are missing. I want to turn on DEBUG
> logging and see EVERYTHING that happens at init time to be able to help
> users figure out why a service cannot be registered or, seemingly
> registered OK but getting a weird error on service start. The classic
> example, is using 64-bit prunsrv with 32-bit Java. Or, having JAVA_HOME
> pointing to the "wrong" place where "wrong" can be wrong in all sorts of
> ways.

Having spent several hours last night debugging why the Java start mode
wasn't working to find it was a typo in the location of JAVA_HOME in the
registry I completely agree with you.

> 2) When I do turn on DEBUG logging, I only see ERROR on stderr on startup.
> 
> So I'd like help in getting help for our users :-)

I'm happy to help out where I can. My normal approach is to add debug
logging when I'm trying to fix something and I can't figure out what
went wrong. I'm expecting to be adding a log of debug logging to the
start-up process after last night and the next bug on my TODO list is
start-up related as well. It won't be completely comprehensive but it
should be better than what we have.

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
For additional commands, e-mail: dev-help@commons.apache.org


Re: [commons-daemon] branch master updated: [DAEMON-414] prunsrv uses its log is before it is initialized.

Posted by Gary Gregory <ga...@gmail.com>.
On Fri, Nov 22, 2019 at 12:29 PM Mark Thomas <ma...@apache.org> wrote:

> On 21/11/2019 19:29, ggregory@apache.org wrote:
> > This is an automated email from the ASF dual-hosted git repository.
> >
> > ggregory pushed a commit to branch master
> > in repository https://gitbox.apache.org/repos/asf/commons-daemon.git
> >
> >
> > The following commit(s) were added to refs/heads/master by this push:
> >      new 8a46539  [DAEMON-414] prunsrv uses its log is before it is
> initialized.
> > 8a46539 is described below
> >
> > commit 8a46539bd0a7fe42fab667a249a1c59906faf9ab
> > Author: Gary Gregory <ga...@gmail.com>
> > AuthorDate: Thu Nov 21 14:29:25 2019 -0500
>
>
> Sorry, this needs to be reverted.
>
> You've moved the logging initialisation above the code that reads the
> logging configuration. This breaks the logging.
>
> A better fix would probably be to change the two lines that write to the
> log file before it is ready to write to stderr instead.
>

Reverted. Thank you for reviewing.

Two items:

1) There is a LOT of logging I feel we are missing. I want to turn on DEBUG
logging and see EVERYTHING that happens at init time to be able to help
users figure out why a service cannot be registered or, seemingly
registered OK but getting a weird error on service start. The classic
example, is using 64-bit prunsrv with 32-bit Java. Or, having JAVA_HOME
pointing to the "wrong" place where "wrong" can be wrong in all sorts of
ways.

2) When I do turn on DEBUG logging, I only see ERROR on stderr on startup.

So I'd like help in getting help for our users :-)

Gary




> Mark
>
>
> >
> >     [DAEMON-414] prunsrv uses its log is before it is initialized.
> > ---
> >  src/changes/changes.xml | 5 ++++-
> >  1 file changed, 4 insertions(+), 1 deletion(-)
> >
> > diff --git a/src/changes/changes.xml b/src/changes/changes.xml
> > index f1163e8..03bb314 100644
> > --- a/src/changes/changes.xml
> > +++ b/src/changes/changes.xml
> > @@ -39,7 +39,10 @@
> >    </properties>
> >    <body>
> >      <release version="1.2.3" date="TBD" description="Bug fix release">
> > -    </release<
> > +      <action issue="DAEMON-414" type="fix" dev="ggregory" due-to="Gary
> Gregory">
> > +        prunsrv uses its log is before it is initialized.
> > +      </action>
> > +    </release>
> >      <release version="1.2.2" date="2019-10-04" description="Bug fix
> release">
> >        <action issue="DAEMON-408" type="fix" dev="markt">
> >          Procrun. Correct a regression in the fix for DAEMON-401 that
> prevented
> >
>
>

Re: [commons-daemon] branch master updated: [DAEMON-414] prunsrv uses its log is before it is initialized.

Posted by Mark Thomas <ma...@apache.org>.
On 21/11/2019 19:29, ggregory@apache.org wrote:
> This is an automated email from the ASF dual-hosted git repository.
> 
> ggregory pushed a commit to branch master
> in repository https://gitbox.apache.org/repos/asf/commons-daemon.git
> 
> 
> The following commit(s) were added to refs/heads/master by this push:
>      new 8a46539  [DAEMON-414] prunsrv uses its log is before it is initialized.
> 8a46539 is described below
> 
> commit 8a46539bd0a7fe42fab667a249a1c59906faf9ab
> Author: Gary Gregory <ga...@gmail.com>
> AuthorDate: Thu Nov 21 14:29:25 2019 -0500


Sorry, this needs to be reverted.

You've moved the logging initialisation above the code that reads the
logging configuration. This breaks the logging.

A better fix would probably be to change the two lines that write to the
log file before it is ready to write to stderr instead.

Mark


> 
>     [DAEMON-414] prunsrv uses its log is before it is initialized.
> ---
>  src/changes/changes.xml | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/src/changes/changes.xml b/src/changes/changes.xml
> index f1163e8..03bb314 100644
> --- a/src/changes/changes.xml
> +++ b/src/changes/changes.xml
> @@ -39,7 +39,10 @@
>    </properties>
>    <body>
>      <release version="1.2.3" date="TBD" description="Bug fix release">
> -    </release<
> +      <action issue="DAEMON-414" type="fix" dev="ggregory" due-to="Gary Gregory">
> +        prunsrv uses its log is before it is initialized.
> +      </action>
> +    </release>
>      <release version="1.2.2" date="2019-10-04" description="Bug fix release">
>        <action issue="DAEMON-408" type="fix" dev="markt">
>          Procrun. Correct a regression in the fix for DAEMON-401 that prevented
>