1

I find this url. I can use

verror -all

in console. But I try to find documentation about all errors.

Community
  • 1
  • 1

1 Answers1

2

You can print the verror output to a file. Try this:

set ErrorFile [open "Errors.txt" w]
puts $ErrorFile [verror -all]
close $ErrorFile

Errors.txt will then contain the entire output of the command.

scary_jeff
  • 4,314
  • 13
  • 27