Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyatea committed Dec 17, 2024
1 parent 7a38ed4 commit 12dcaaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/core/DriveService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ export class DriveService {
private async save(file: MiDriveFile, path: string, name: string, type: string, hash: string, size: number): Promise<MiDriveFile> {
// thunbnail, webpublic を必要なら生成
const alts = await this.generateAlts(path, type, !file.uri);
console.log(this.config.objectStorage?.useObjectStorage);
console.log(this.meta.useObjectStorage || this.config.objectStorage?.useObjectStorage);
this.registerLogger.debug(String(this.config.objectStorage?.useObjectStorage));
this.registerLogger.debug(String(this.meta.useObjectStorage || this.config.objectStorage?.useObjectStorage));

if (this.meta.useObjectStorage || this.config.objectStorage?.useObjectStorage) {
//#region ObjectStorage params
Expand Down

0 comments on commit 12dcaaf

Please sign in to comment.