Re: XRM 64: Use --verbose instead of --statistics.

On 2006-06-11, SIGOURE Benoit <sigoure.benoit@lrde.epita.fr> wrote:
Index: ChangeLog from SIGOURE Benoit <sigoure.benoit@lrde.epita.fr>
Use --verbose instead of --statistics. This cancels the note of the previous commit.
* src/str/log-timed.str: Use --verbose instead of --statistics. * src/str/xrm-front.str: Change verbosity levels.
log-timed.str | 6 +++--- xrm-front.str | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-)
Index: src/str/log-timed.str --- src/str/log-timed.str (revision 63) +++ src/str/log-timed.str (working copy) @@ -14,7 +14,7 @@ ** printed. (default level=1) */ log-timed(s | msg, level) = - if <geq>(<get-config> "--statistics", level) then + if <geq>(<verbosity>(), level) then
^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
where( times => start ; print-log-msg(|msg) @@ -42,7 +42,7 @@ ** Same thing as log-timed but nothing will be printed until s finished. */ log-timed-reentrant(s | msg, level) = - if <geq>(<get-config> "--statistics", level) then + if <geq>(<verbosity>(), level) then
^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
where(times => start) ; s ; where( @@ -68,6 +68,6 @@ <concat-strings>["[ " , <log-src> , " | info ] " - , <align-left>(' ', msg, 40) // 40 = max strlen(msg) + , <align-left>(' ', msg, 36) // 36 = max strlen(msg) ] ; log-puts
-- SIGOURE Benoit aka Tsuna _____ /EPITA\ Promo 2008.CSI Rock & tRoll

"Tsuna" == Tsuna <tsuna@warszawa.lrde.epita.fr> writes:
I have not understood the point of this message, where you answer to yourself.
On 2006-06-11, SIGOURE Benoit <sigoure.benoit@lrde.epita.fr> wrote:
Index: ChangeLog from SIGOURE Benoit <sigoure.benoit@lrde.epita.fr>
Use --verbose instead of --statistics. This cancels the note of the previous commit.
* src/str/log-timed.str: Use --verbose instead of --statistics. * src/str/xrm-front.str: Change verbosity levels.
log-timed.str | 6 +++--- xrm-front.str | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-)
Index: src/str/log-timed.str --- src/str/log-timed.str (revision 63) +++ src/str/log-timed.str (working copy) @@ -14,7 +14,7 @@ ** printed. (default level=1) */ log-timed(s | msg, level) = - if <geq>(<get-config> "--statistics", level) then + if <geq>(<verbosity>(), level) then
^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^
where( times => start ; print-log-msg(|msg) @@ -42,7 +42,7 @@ ** Same thing as log-timed but nothing will be printed until s finished. */ log-timed-reentrant(s | msg, level) = - if <geq>(<get-config> "--statistics", level) then + if <geq>(<verbosity>(), level) then ^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ where(times => start) ; s ; where( @@ -68,6 +68,6 @@ <concat-strings>["[ " , <log-src> , " | info ] " - , <align-left>(' ', msg, 40) // 40 = max strlen(msg) + , <align-left>(' ', msg, 36) // 36 = max strlen(msg) ] ; log-puts

On 2006-06-13, Akim Demaille <akim@lrde.epita.fr> wrote:
"Tsuna" == Tsuna <tsuna@warszawa.lrde.epita.fr> writes:
I have not understood the point of this message, where you answer to yourself.
You said in one of your previous post that you didn't see where I made the switch from --statistics to --verbose. On 2006-06-12, Akim Demaille <akim@lrde.epita.fr> wrote:
"SIGOURE" == SIGOURE Benoit <sigoure.benoit@lrde.epita.fr> writes:
https://svn.lrde.epita.fr/svn/xrm/trunk Index: ChangeLog from SIGOURE Benoit <sigoure.benoit@lrde.epita.fr>
Use --verbose instead of --statistics. This cancels the note of the previous commit.
I have not seen the removal of --statistics support.
I was just `underlining' the relevant part of the changes. -- SIGOURE Benoit aka Tsuna _____ /EPITA\ Promo 2008.CSI Rock & tRoll

"Tsuna" == Tsuna <tsuna@warszawa.lrde.epita.fr> writes:
On 2006-06-13, Akim Demaille <akim@lrde.epita.fr> wrote:
"Tsuna" == Tsuna <tsuna@warszawa.lrde.epita.fr> writes:
I have not understood the point of this message, where you answer to yourself.
You said in one of your previous post that you didn't see where I made the switch from --statistics to --verbose.
I have not seen the removal of --statistics support.
I was just `underlining' the relevant part of the changes.
Ah, now I understand. But still, I have not seen the removal of --statistics support: I have seen you're no longer using it at that place, but I guess --statistics is still getopt'd. But then, maybe you use it elsewhere.

On 2006-06-14, Akim Demaille <akim@lrde.epita.fr> wrote:
"Tsuna" == Tsuna <tsuna@warszawa.lrde.epita.fr> writes:
On 2006-06-13, Akim Demaille <akim@lrde.epita.fr> wrote:
"Tsuna" == Tsuna <tsuna@warszawa.lrde.epita.fr> writes:
I have not understood the point of this message, where you answer to yourself.
You said in one of your previous post that you didn't see where I made the switch from --statistics to --verbose.
I have not seen the removal of --statistics support.
I was just `underlining' the relevant part of the changes.
Ah, now I understand. But still, I have not seen the removal of --statistics support: I have seen you're no longer using it at that place, but I guess --statistics is still getopt'd. But then, maybe you use it elsewhere.
I don't use it anymore. However, this option is *defined* by XTC, not by me. I just stop using it, I didn't remove it (since I can't). -- SIGOURE Benoit aka Tsuna _____ /EPITA\ Promo 2008.CSI Rock & tRoll
participants (2)
-
Akim Demaille
-
Tsuna