Skip to content

Commit

Permalink
Log stderr and move Inter font to root
Browse files Browse the repository at this point in the history
  • Loading branch information
Zibbp committed Feb 4, 2022
1 parent 4c0beac commit 702e724
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN apk update \

WORKDIR /tmp

COPY ./.github/Inter.otf ./
COPY ./Inter.otf ./

RUN mkdir -p /usr/share/fonts/opentype/

Expand Down
0 .github/Inter.otf → Inter.otf
100644 → 100755
File renamed without changes.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified docker-compose.yml
100644 → 100755
Empty file.
Empty file modified nginx.conf
100644 → 100755
Empty file.
4 changes: 1 addition & 3 deletions src/exec/exec.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ export class ExecService {
videoDownloadLog.write(data);
});
downloadVideoChild.stderr.on('data', (data) => {
this.logger.error(
`Video download ${vodInfo['id']} exited with error ${data}`,
);
this.logger.verbose(`Video download ${vodInfo['id']} stderr: ${data}`);
videoDownloadLog.write(data);
});

Expand Down

0 comments on commit 702e724

Please sign in to comment.