Logging
# View the web service logs
bin/logs web
# Show help
bin/logs --help
# View logs for multiple services at once
bin/logs filestore docstore web clsi
# Follow log output (like tail -f)
bin/logs -f filestore docstore web clsi
# Limit the number of lines printed (default 50)
bin/logs -n 50 web
# Show all log lines
bin/logs -n all web
# Redirect output to a file
bin/logs -n all web > web.logCopying logs
Persisting logs
Last updated
Was this helpful?