Re: [RFC PATCH 0/1] bdl-lib.sh: add bash debug logger

2018-04-05 Thread Wink Saville
On Thu, Apr 5, 2018 at 12:32 PM, Johannes Schindelin wrote: > Hi Wink, > Note: I have nothing to do with including it. That is the sole discretion > of Junio (who is offline for a week or two, if I understood correctly). > > Ciao, > Johannes txs, I understand.

Re: [RFC PATCH 0/1] bdl-lib.sh: add bash debug logger

2018-04-05 Thread Johannes Schindelin
Hi Wink, On Thu, 5 Apr 2018, Wink Saville wrote: > On Thu, Apr 5, 2018 at 6:37 AM, Johannes Schindelin > wrote: > > After thinking about this more, I am a lot less opposed to including this > > in Git's source code. However, as it is not necessary for Git's > >

Re: [RFC PATCH 0/1] bdl-lib.sh: add bash debug logger

2018-04-05 Thread Wink Saville
On Thu, Apr 5, 2018 at 6:37 AM, Johannes Schindelin wrote: > After thinking about this more, I am a lot less opposed to including this > in Git's source code. However, as it is not necessary for Git's > functionality, it should probably go into contrib/, and I would

Re: [RFC PATCH 0/1] bdl-lib.sh: add bash debug logger

2018-04-05 Thread Johannes Schindelin
Hi Wink, On Fri, 30 Mar 2018, Wink Saville wrote: > On Fri, Mar 30, 2018 at 3:34 AM, Johannes Schindelin > wrote: > > > > On Tue, 27 Mar 2018, Wink Saville wrote: > > > >> Add bdl-lib.sh which provides functions to assit in debugging git > >> shell scripts and tests.

Re: [RFC PATCH 0/1] bdl-lib.sh: add bash debug logger

2018-03-30 Thread Wink Saville
On Fri, Mar 30, 2018 at 3:34 AM, Johannes Schindelin wrote: > Hi Wink, > > On Tue, 27 Mar 2018, Wink Saville wrote: > >> Add bdl-lib.sh which provides functions to assit in debugging git >> shell scripts and tests. > > Interesting idea. It is Bash-only, though... (and

Re: [RFC PATCH 0/1] bdl-lib.sh: add bash debug logger

2018-03-30 Thread Johannes Schindelin
Hi Wink, On Tue, 27 Mar 2018, Wink Saville wrote: > Add bdl-lib.sh which provides functions to assit in debugging git > shell scripts and tests. Interesting idea. It is Bash-only, though... (and it is not a secret that I want to discourage using Unix shell scripts in Git's production code, they

[RFC PATCH 0/1] bdl-lib.sh: add bash debug logger

2018-03-27 Thread Wink Saville
Add bdl-lib.sh which provides functions to assit in debugging git shell scripts and tests. The primary public interace are two routines, bdl and bdl_nsl which print strings. The difference between the two is that bdl outputs location of the statement optionally followed by a string to print. For