@@ -132,6 +132,7 @@ impl KVStoreSync for VssStore {
132132 internal_runtime. block_on ( async move {
133133 tokio:: time:: timeout ( VSS_IO_TIMEOUT , fut) . await . map_err ( |_| {
134134 let msg = "VssStore::read timed out" ;
135+ eprintln ! ( "{}" , msg) ;
135136 Error :: new ( ErrorKind :: Other , msg)
136137 } )
137138 } ) ?
@@ -171,6 +172,7 @@ impl KVStoreSync for VssStore {
171172 internal_runtime. block_on ( async move {
172173 tokio:: time:: timeout ( VSS_IO_TIMEOUT , fut) . await . map_err ( |_| {
173174 let msg = "VssStore::write timed out" ;
175+ eprintln ! ( "{}" , msg) ;
174176 Error :: new ( ErrorKind :: Other , msg)
175177 } )
176178 } ) ?
@@ -209,6 +211,7 @@ impl KVStoreSync for VssStore {
209211 internal_runtime. block_on ( async move {
210212 tokio:: time:: timeout ( VSS_IO_TIMEOUT , fut) . await . map_err ( |_| {
211213 let msg = "VssStore::remove timed out" ;
214+ eprintln ! ( "{}" , msg) ;
212215 Error :: new ( ErrorKind :: Other , msg)
213216 } )
214217 } ) ?
@@ -231,6 +234,7 @@ impl KVStoreSync for VssStore {
231234 internal_runtime. block_on ( async move {
232235 tokio:: time:: timeout ( VSS_IO_TIMEOUT , fut) . await . map_err ( |_| {
233236 let msg = "VssStore::list timed out" ;
237+ eprintln ! ( "{}" , msg) ;
234238 Error :: new ( ErrorKind :: Other , msg)
235239 } )
236240 } ) ?
0 commit comments