@@ -282,7 +282,7 @@ bool NativeProcessDarwin::ProcessUsingBackBoard() const {
282
282
// has already been copied.
283
283
void NativeProcessDarwin::ExceptionMessageReceived (
284
284
const MachException::Message &message) {
285
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
285
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
286
286
287
287
std::lock_guard<std::recursive_mutex> locker (m_exception_messages_mutex);
288
288
if (m_exception_messages.empty ()) {
@@ -300,7 +300,7 @@ void NativeProcessDarwin::ExceptionMessageReceived(
300
300
}
301
301
302
302
void *NativeProcessDarwin::ExceptionThread (void *arg) {
303
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
303
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
304
304
if (!arg) {
305
305
if (log)
306
306
log->Printf (" NativeProcessDarwin::%s(): cannot run mach exception "
@@ -313,7 +313,7 @@ void *NativeProcessDarwin::ExceptionThread(void *arg) {
313
313
}
314
314
315
315
void *NativeProcessDarwin::DoExceptionThread () {
316
- Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
316
+ Log *log (GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
317
317
318
318
if (log)
319
319
log->Printf (" NativeProcessDarwin::%s(arg=%p) starting thread..." ,
@@ -1378,7 +1378,7 @@ NativeProcessDarwin::GetTaskBasicInfo(task_t task,
1378
1378
}
1379
1379
1380
1380
Log *verbose_log (
1381
- GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS ));
1381
+ GetLogIfAllCategoriesSet (LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_VERBOSE ));
1382
1382
if (verbose_log) {
1383
1383
float user = (float )info->user_time .seconds +
1384
1384
(float )info->user_time .microseconds / 1000000 .0f ;
0 commit comments