@@ -88,7 +88,7 @@ pub(super) fn outb_log(mgr: &mut SandboxMemoryManager<HostSharedMemory>) -> Resu
8888            & Record :: builder ( ) 
8989                . args ( format_args ! ( "{}" ,  log_data. message) ) 
9090                . level ( record_level) 
91-                 . target ( "hyperlight-guest " ) 
91+                 . target ( "hyperlight_guest " ) 
9292                . file ( source_file) 
9393                . line ( line) 
9494                . module_path ( source) 
@@ -100,7 +100,7 @@ pub(super) fn outb_log(mgr: &mut SandboxMemoryManager<HostSharedMemory>) -> Resu
100100            & Record :: builder ( ) 
101101                . args ( format_args ! ( "{}" ,  log_data. message) ) 
102102                . level ( record_level) 
103-                 . target ( "hyperlight-guest " ) 
103+                 . target ( "hyperlight_guest " ) 
104104                . file ( Some ( & log_data. source_file ) ) 
105105                . line ( Some ( log_data. line ) ) 
106106                . module_path ( Some ( & log_data. source ) ) 
@@ -442,7 +442,7 @@ mod tests {
442442                        test_value_as_str ( metadata_values_map,  "level" ,  expected_level) ; 
443443                        test_value_as_str ( event_values_map,  "log.file" ,  "test source file" ) ; 
444444                        test_value_as_str ( event_values_map,  "log.module_path" ,  "test source" ) ; 
445-                         test_value_as_str ( event_values_map,  "log.target" ,  "hyperlight-guest " ) ; 
445+                         test_value_as_str ( event_values_map,  "log.target" ,  "hyperlight_guest " ) ; 
446446                        count_matching_events += 1 ; 
447447                    } 
448448                    assert ! ( 
0 commit comments