···99] {
1010 let output = $output | default (mktemp -t --suffix .msgpackz) | path expand
1111 log info "This function produces a brotli-compressed msgpack debug file. It can be useful to provide more context for hard-to-debug issues"
1212- log info $"If you'd like to check what information it contains, use `nu -c 'open ($output) | from msgpackz | explore'`"
1212+1313+ if $base64 {
1414+ log info $"If you'd like to check what information it contains, use `nu -c '{base64} | decode base64 | from msgpackz'`"
1515+ } else {
1616+ log info $"If you'd like to check what information it contains, use `nu -c 'open ($output) | from msgpackz'`"
1717+ }
1818+1319 log info ""
1420 log info "Creating debug file..."
1521