I think SageMath-9.0.app has less records in log file.
I suspect it is not anything planned.
When SageMath-9.0.app terminates abnormally, some messages for log file is
lost.
This loss has one explanation, which is the --line-buffered option of grep
is turned off in SageMath-9.0.app.
Since I believe this support-group is for asking things to developers, I
propose two thing:
Dear developers, please turn on --line-buffered option in AppController.m
SageMath-9.0.app
" grep -i --context 1 'Notebook is running at' |"
" grep -o http://.*",
SageMath-9.1.app
" grep -i --line-buffered --context=1 'Notebook is
running at' |"
" grep --line-buffered -o http://.*",
Note also the character "=". This is causing an error currently.
(I myself used hex editor to fix this. But this solution is only
recommended for programmers.)
Please turn on other switches so that the other messages for log file will
be recorded.
Currently, I do not see version numbers of Sage-9.0 in log file.
I think informative log file will help the community to identify the real
bottle neck.
--
You received this message because you are subscribed to the Google Groups
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/sage-support/f27bc0de-c3f8-410c-8fe4-3410d8bb16a4%40googlegroups.com.