File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
libsql-server/src/namespace Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -368,9 +368,10 @@ impl<M: MakeNamespace> NamespaceStore<M> {
368
368
snapshot_at_shutdown : bool ,
369
369
max_active_namespaces : usize ,
370
370
) -> Self {
371
+ tracing:: trace!( "Max active namespaces: {max_active_namespaces}" ) ;
371
372
let store = Cache :: < NamespaceName , NamespaceEntry < M :: Database > > :: builder ( )
372
- . async_eviction_listener ( move |name, ns, _ | {
373
- tracing:: info !( "evicting namespace `{name}` asynchronously" ) ;
373
+ . async_eviction_listener ( move |name, ns, cause | {
374
+ tracing:: debug !( "evicting namespace `{name}` asynchronously: {cause:?} " ) ;
374
375
// TODO(sarna): not clear if we should snapshot-on-evict...
375
376
// On the one hand, better to do so, because we have no idea
376
377
// for how long we're evicting a namespace.
You can’t perform that action at this time.
0 commit comments