Logging
# You can use the following command to view the web service logs
bin/logs web
# You can use --help for help
bin/logs --help
# You can also look at the logs for multiple services at once:
bin/logs filestore docstore web clsi
# You can follow the log output using the -f flag
bin/logs -f filestore docstore web clsi
# You can use the -n {number} flag to limit the number of lines to print (default 50)
bin/logs -n 50 web
# You can use the -n all flag to show all log lines
bin/logs -n all web
# You can use > to redirect the output to a file
bin/logs -n all web > web.logCopying logs
Persisting logs
Last updated
Was this helpful?