-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConsoleLogger not active in the REPL #52075
Milestone
Comments
fredrikekre
added
REPL
Julia's REPL (Read Eval Print Loop)
logging
The logging framework
labels
Nov 8, 2023
Maybe the cause of JuliaLang/JuliaSyntax.jl#375 |
It's a problem before REPL for startup.jl too #51493 |
I was planning on moving ConsoleLogger to Base to fix this but it depends on StyledStrings now so that's not really possible. |
KristofferC
added a commit
that referenced
this issue
May 22, 2024
KristofferC
added a commit
that referenced
this issue
May 23, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Logging.__init__
replaces the global logger:julia/stdlib/Logging/src/Logging.jl
Lines 93 to 95 in 1327dfe
Logging.__init__
was run when loading the sysimg. However, now this isn't the case anymore. This means thatSimpleLogger
is used by default in the REPLusing Logging
replaces the logger, which might be a logger a user has already configuredNot sure what the best fix is, but probably
REPL
should depend onLogging
and setup the logger while the REPL initializes.The text was updated successfully, but these errors were encountered: