@@ -65,7 +65,7 @@ extern "C" kern_return_t catch_mach_exception_raise_state(
65
65
mach_msg_type_number_t old_stateCnt, thread_state_t new_state,
66
66
mach_msg_type_number_t *new_stateCnt) {
67
67
// TODO change to LIBLLDB_LOG_EXCEPTION
68
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
68
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
69
69
if (log) {
70
70
log->Printf (" ::%s(exc_port = 0x%4.4x, exc_type = %d (%s), "
71
71
" exc_data = 0x%llx, exc_data_count = %d)" ,
@@ -81,7 +81,7 @@ extern "C" kern_return_t catch_mach_exception_raise_state_identity(
81
81
mach_msg_type_number_t exc_data_count, int *flavor,
82
82
thread_state_t old_state, mach_msg_type_number_t old_stateCnt,
83
83
thread_state_t new_state, mach_msg_type_number_t *new_stateCnt) {
84
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
84
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
85
85
if (log) {
86
86
log->Printf (" ::%s(exc_port = 0x%4.4x, thd_port = 0x%4.4x, "
87
87
" tsk_port = 0x%4.4x, exc_type = %d (%s), exc_data[%d] = "
@@ -100,7 +100,7 @@ catch_mach_exception_raise(mach_port_t exc_port, mach_port_t thread_port,
100
100
mach_port_t task_port, exception_type_t exc_type,
101
101
mach_exception_data_t exc_data,
102
102
mach_msg_type_number_t exc_data_count) {
103
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
103
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
104
104
if (log) {
105
105
log->Printf (" ::%s(exc_port = 0x%4.4x, thd_port = 0x%4.4x, "
106
106
" tsk_port = 0x%4.4x, exc_type = %d (%s), exc_data[%d] "
@@ -278,7 +278,7 @@ Status MachException::Message::Reply(::pid_t inferior_pid, task_t inferior_task,
278
278
// Reply to the exception...
279
279
Status error;
280
280
281
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
281
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
282
282
283
283
// If we had a soft signal, we need to update the thread first so it can
284
284
// continue without signaling
@@ -435,7 +435,7 @@ Status MachException::PortInfo::Save(task_t task) {
435
435
Status MachException::PortInfo::Restore (task_t task) {
436
436
Status error;
437
437
438
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
438
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
439
439
440
440
if (log)
441
441
log->Printf (" MachException::PortInfo::Restore(task = 0x%4.4x)" , task);
0 commit comments