all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#59269: Maybe add timestamps to *Async-native-compile-log* by default
@ 2022-11-13  7:00 Dan Jacobson
  2022-11-15  4:01 ` Stefan Kangas
  0 siblings, 1 reply; 4+ messages in thread
From: Dan Jacobson @ 2022-11-13  7:00 UTC (permalink / raw)
  To: 59269

We notice buffer
 %* *Async-native-compile-log* 96952 Fundamental
$ sort|uniq -c|sort -nr
gives:
    145 Loading debian-ispell...
    145 Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
    145 Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
    145 Loading /etc/emacs/site-start.d/70x-face-el.el (source)...
    145 Loading /etc/emacs/site-start.d/50w3m-el-snapshot.el (source)...
    145 Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
    145 Loading /etc/emacs/site-start.d/50dictem.el (source)...
    145 Loading /etc/emacs/site-start.d/50bbdb3.el (source)...
    145 Loading /etc/emacs/site-start.d/50autoconf.el (source)...
    145 Loading /etc/emacs/site-start.d/00debian.el (source)...
      8 Compilation finished.
      1 Compiling /usr/share/emacs/site-lisp/w3m/w3m.el...
      1 Compiling /usr/share/emacs/site-lisp/w3m/w3m-util.el...
OK, fine. But maybe add timestamps to the buffer by default.
GNU Emacs 28.2





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#59269: Maybe add timestamps to *Async-native-compile-log* by default
  2022-11-13  7:00 bug#59269: Maybe add timestamps to *Async-native-compile-log* by default Dan Jacobson
@ 2022-11-15  4:01 ` Stefan Kangas
  2022-11-17 11:19   ` Dan Jacobson
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Kangas @ 2022-11-15  4:01 UTC (permalink / raw)
  To: Dan Jacobson, 59269

Dan Jacobson <jidanni@jidanni.org> writes:

> We notice buffer
>  %* *Async-native-compile-log* 96952 Fundamental
> $ sort|uniq -c|sort -nr
> gives:
>     145 Loading debian-ispell...
>     145 Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
>     145 Loading /var/cache/dictionaries-common/emacsen-ispell-default.el (source)...
>     145 Loading /etc/emacs/site-start.d/70x-face-el.el (source)...
>     145 Loading /etc/emacs/site-start.d/50w3m-el-snapshot.el (source)...
>     145 Loading /etc/emacs/site-start.d/50dictionaries-common.el (source)...
>     145 Loading /etc/emacs/site-start.d/50dictem.el (source)...
>     145 Loading /etc/emacs/site-start.d/50bbdb3.el (source)...
>     145 Loading /etc/emacs/site-start.d/50autoconf.el (source)...
>     145 Loading /etc/emacs/site-start.d/00debian.el (source)...
>       8 Compilation finished.
>       1 Compiling /usr/share/emacs/site-lisp/w3m/w3m.el...
>       1 Compiling /usr/share/emacs/site-lisp/w3m/w3m-util.el...
> OK, fine. But maybe add timestamps to the buffer by default.
> GNU Emacs 28.2

I don't think I understand what you are saying.

Could you please elaborate on what problem it is that you are seeing, or
what feature you are suggesting?





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#59269: Maybe add timestamps to *Async-native-compile-log* by default
  2022-11-15  4:01 ` Stefan Kangas
@ 2022-11-17 11:19   ` Dan Jacobson
  2022-11-25  0:55     ` Stefan Kangas
  0 siblings, 1 reply; 4+ messages in thread
From: Dan Jacobson @ 2022-11-17 11:19 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: 59269

I'm just saying at first glance it looks like something looping because
there are 145 identical line
>> $ sort|uniq -c|sort -nr
>> 145 Loading debian-ispell...
>> 145 Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...

But OK, each time a process gets handed back the CPU it prints a message
again. Necessary?
If necessary then at least a timestamp could be added to such lines.
If the timestamp turns out to be the same, that means there is some
bigger problem.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#59269: Maybe add timestamps to *Async-native-compile-log* by default
  2022-11-17 11:19   ` Dan Jacobson
@ 2022-11-25  0:55     ` Stefan Kangas
  0 siblings, 0 replies; 4+ messages in thread
From: Stefan Kangas @ 2022-11-25  0:55 UTC (permalink / raw)
  To: Dan Jacobson; +Cc: 59269

tags 59269 + wontfix
close 59269
thanks

Dan Jacobson <jidanni@jidanni.org> writes:

> I'm just saying at first glance it looks like something looping because
> there are 145 identical line
>>> $ sort|uniq -c|sort -nr
>>> 145 Loading debian-ispell...
>>> 145 Loading /var/cache/dictionaries-common/emacsen-ispell-dicts.el (source)...
>
> But OK, each time a process gets handed back the CPU it prints a message
> again. Necessary?

Maybe not, but then again that should probably be taken up with the
Debian developers, not us.

> If necessary then at least a timestamp could be added to such lines.
> If the timestamp turns out to be the same, that means there is some
> bigger problem.

Are you suggesting that we should print a timestamp each time we start
and/or finish a compilation?  I don't see that it would be very useful,
myself.  The buffer you are looking at should only contain debugging
information, none of which is time sensitive.

So I don't think this is something that we want to do, and I'm closing
this bug report.





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-25  0:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-13  7:00 bug#59269: Maybe add timestamps to *Async-native-compile-log* by default Dan Jacobson
2022-11-15  4:01 ` Stefan Kangas
2022-11-17 11:19   ` Dan Jacobson
2022-11-25  0:55     ` Stefan Kangas

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.