Update aliyun.client.ts

This commit is contained in:
fantasticit 2022-06-04 22:25:35 +08:00
parent 76ccf38925
commit 9edf9a71bb
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export class AliyunOssClient extends BaseOssClient {
this.client = new AliyunOSS(config); this.client = new AliyunOSS(config);
return this.client; return this.client;
} catch (err) { } catch (err) {
console.log('无法启动阿里云存储服务,请检查阿里云 OSS 配置是否正确'); console.log('无法启动阿里云存储服务,请检查阿里云 OSS 配置是否正确', err.message);
} }
} }