File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -760,7 +760,7 @@ impl Connection {
760
760
// First try to detect chip using security_info when possible
761
761
if let Ok ( security_info) = self . security_info ( use_stub) {
762
762
if let Some ( chip_id) = security_info. chip_id {
763
- info ! ( "Detected chip using security info chip_id: {chip_id}" ) ;
763
+ debug ! ( "Detected chip using security info chip_id: {chip_id}" ) ;
764
764
// Convert u32 chip_id to u16 for compatibility with Chip::try_from
765
765
match Chip :: try_from ( chip_id as u16 ) {
766
766
Ok ( chip) => return Ok ( chip) ,
Original file line number Diff line number Diff line change @@ -975,6 +975,7 @@ impl Flasher {
975
975
}
976
976
977
977
/// Get security info.
978
+ // TODO: Deprecate this method in the next major release
978
979
pub fn security_info ( & mut self ) -> Result < SecurityInfo , Error > {
979
980
self . connection . security_info ( self . use_stub )
980
981
}
You can’t perform that action at this time.
0 commit comments