Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix: 放宽过滤 waline 错误日志的条件
  • Loading branch information
Mereithhh committed Sep 1, 2022
1 parent cbf2a56 commit 57dfbb3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/server/src/provider/waline/waline.provider.ts
Expand Up @@ -134,9 +134,7 @@ export class WalineProvider {
});
this.ctx.stdout.on('data', (data) => {
const t = data.toString();
if (
!t.includes("Cannot find module '/app/server/node_modules/sqlite3")
) {
if (!t.includes('Cannot find module')) {
this.logger.log(data.toString());
}
});
Expand Down

0 comments on commit 57dfbb3

Please sign in to comment.