Skip to content
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

maxlog=50 for "Request hash not found..." to avoid overflowing logs #119

Merged
merged 2 commits into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Configuration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ using Configurations
import TOML
import Pluto
export SliderServerSettings, ExportSettings, PlutoDeploySettings, get_configuration
using TerminalLoggers: TerminalLogger
using Logging: global_logger
using FromFile
import Glob
@from "./ConfigurationDocs.jl" import @extract_docs, get_kwdocs, list_options_md
Expand Down
2 changes: 1 addition & 1 deletion src/HTTPRouter.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function make_router(
If this is an automated setup, then this could happen inbetween deployments.

If this is a manual setup, then running the .jl notebook file might have caused a small change (e.g. the version number or a whitespace change). Copy notebooks to a temporary directory before running them using the bind server. =#
@info "Request hash not found. See error hint in my source code." notebook_hash
@info "Request hash not found. See error hint in my source code." notebook_hash maxlog=50
nothing
else
notebook_sessions[i]
Expand Down