| Question: How do I report unexpected errors and exceptions? 
Answer:  
First, use the
Foxhound Options - Diagnostics - Display Diagnostics
button to see if there are any diagnostic messages associated with this problem.
If so, use the
Export Diagnostics
button to copy the Foxhound diagnostic messages to a text file.
 Then, run this adhoc query to determine if Foxhound has captured any diagnostic dumps associated with those diagnostic messages;
see How do I run adhoc queries on the Foxhound database?
C:\temp\foxhound_diagnostics.txt
 If so, run this adhoc query to copy the diagnostic dumps to another text file:
SELECT exception_id, 
       dump_id,  
       dump_inserted_at
  FROM exception_dump
 ORDER BY exception_id,
       dump_id;
 Finally, send both files to Breck.Carter@gmail.com
SELECT *
  FROM exception_dump
 ORDER BY exception_id,
       dump_id;
OUTPUT TO 'C:\temp\foxhound_dumps.txt';
 
See also...
Help - Foxhound Options - Diagnostics
 How do I run adhoc queries on the Foxhound database?
 
 |