@@ -524,12 +524,12 @@ static enum a2l_style addr2line_configure(struct child_process *a2l, const char
524
524
style = LLVM ;
525
525
cached = true;
526
526
lines = 1 ;
527
- pr_debug ("Detected LLVM addr2line style\n" );
527
+ pr_debug3 ("Detected LLVM addr2line style\n" );
528
528
} else if (ch == '0' ) {
529
529
style = GNU_BINUTILS ;
530
530
cached = true;
531
531
lines = 3 ;
532
- pr_debug ("Detected binutils addr2line style\n" );
532
+ pr_debug3 ("Detected binutils addr2line style\n" );
533
533
} else {
534
534
if (!symbol_conf .disable_add2line_warn ) {
535
535
char * output = NULL ;
@@ -595,7 +595,7 @@ static int read_addr2line_record(struct io *io,
595
595
if (io__getline (io , & line , & line_len ) < 0 || !line_len )
596
596
goto error ;
597
597
598
- pr_debug ("%s %s: addr2line read address for sentinel: %s" , __func__ , dso_name , line );
598
+ pr_debug3 ("%s %s: addr2line read address for sentinel: %s" , __func__ , dso_name , line );
599
599
if (style == LLVM && line_len == 2 && line [0 ] == ',' ) {
600
600
/* Found the llvm-addr2line sentinel character. */
601
601
zfree (& line );
@@ -641,7 +641,7 @@ static int read_addr2line_record(struct io *io,
641
641
if (first && (io__getline (io , & line , & line_len ) < 0 || !line_len ))
642
642
goto error ;
643
643
644
- pr_debug ("%s %s: addr2line read line: %s" , __func__ , dso_name , line );
644
+ pr_debug3 ("%s %s: addr2line read line: %s" , __func__ , dso_name , line );
645
645
if (function != NULL )
646
646
* function = strdup (strim (line ));
647
647
@@ -652,7 +652,7 @@ static int read_addr2line_record(struct io *io,
652
652
if (io__getline (io , & line , & line_len ) < 0 || !line_len )
653
653
goto error ;
654
654
655
- pr_debug ("%s %s: addr2line filename:number : %s" , __func__ , dso_name , line );
655
+ pr_debug3 ("%s %s: addr2line filename:number : %s" , __func__ , dso_name , line );
656
656
if (filename_split (line , line_nr == NULL ? & dummy_line_nr : line_nr ) == 0 &&
657
657
style == GNU_BINUTILS ) {
658
658
ret = 0 ;
0 commit comments