diff --git a/packages/cli/src/loader.ts b/packages/cli/src/loader.ts index 99d484676..7e53a5df2 100644 --- a/packages/cli/src/loader.ts +++ b/packages/cli/src/loader.ts @@ -29,7 +29,7 @@ export class LocalLoader implements CannonLoader { } getLabel(): string { - return this.dir; + return 'local blobs'; } read(url: string): Promise { @@ -94,7 +94,7 @@ export class CliLoader implements CannonLoader { case LoaderAction.read: return this.readIpfs ? this.readIpfs.getLabel() : this.repo.getLabel(); case LoaderAction.local: - return this.dir; + return 'local cache'; case LoaderAction.write: return this.writeIpfs ? this.writeIpfs.getLabel() : ''; case LoaderAction.repo: