Skip to content

Commit

Permalink
pool: ReplicaStoreCache updated to describe inner ReplicaStore
Browse files Browse the repository at this point in the history
Motivation:

The toString method of the ReplicaStore is logged during startup.
Currently this uses the default (Object) method, which isn't
very helpful.

Modification:

Add ReplicaStoreCache#toString method

Result:

More meaningful information is logged.

Target: master
Requires-notes: no
Requires-book: no
Patch: https://rb.dcache.org/r/9717/
Acked-by: Gerd Behrmann
  • Loading branch information
paulmillar committed Sep 9, 2016
1 parent c08f8fe commit 355fc08
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -486,4 +486,10 @@ public long getTotalSpace()
{
return _inner.getTotalSpace();
}

@Override
public String toString()
{
return _inner.toString();
}
}

0 comments on commit 355fc08

Please sign in to comment.