File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ impl HandleManager {
48
48
}
49
49
}
50
50
51
+ log:: trace!( "add handle {:#010X}" , handle. value( ) ) ;
51
52
let _ = self . open_handles . insert ( handle, handle_drop_action) ;
52
53
Ok ( ( ) )
53
54
}
@@ -58,6 +59,7 @@ impl HandleManager {
58
59
/// If the handle was not set to be flushed then this will cause an
59
60
/// error but the handle will still be removed from the handler.
60
61
pub fn set_as_flushed ( & mut self , handle : ObjectHandle ) -> Result < ( ) > {
62
+ log:: trace!( "set as flushed handle {:#010X}" , handle. value( ) ) ;
61
63
self . open_handles
62
64
. remove ( & handle)
63
65
. ok_or_else ( || {
@@ -83,6 +85,7 @@ impl HandleManager {
83
85
/// If the handle was set to be flushed then this will cause an
84
86
/// error but the handle will still be removed from the handler.
85
87
pub fn set_as_closed ( & mut self , handle : ObjectHandle ) -> Result < ( ) > {
88
+ log:: trace!( "set as closed handle {:#010X}" , handle. value( ) ) ;
86
89
self . open_handles
87
90
. remove ( & handle)
88
91
. ok_or_else ( || {
You can’t perform that action at this time.
0 commit comments