Skip to content

Commit 2ebb958

Browse files
UntriexTvansasaki
authored andcommitted
Fix showing wrong UUID
Signed-off-by: Matej Justus <[email protected]>
1 parent 74f2f39 commit 2ebb958

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

keylime-agent/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ fn get_uuid(agent_uuid_config: &str) -> String {
685685
Err(_) => {
686686
warn!("Misformatted UUID: {}", &uuid_config);
687687
let agent_uuid = Uuid::new_v4();
688-
info!("Using generated UUID: {}", &uuid_config);
688+
info!("Using generated UUID: {}", &agent_uuid);
689689
agent_uuid.to_string()
690690
}
691691
},

0 commit comments

Comments
 (0)