media download log colors
This commit is contained in:
parent
d76871d3ac
commit
7638c38a6d
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ export const getUser = (user, path, modeParams) => {
|
|||
const proc = spawn(`python3 ~/.local/bin/gallery-dl -c ./config.json${!!args ? ' ' + args + ' ' : ' '}-d ${path} "${url}"`, { shell: true });
|
||||
|
||||
proc.stdout.on('data', data => {
|
||||
log(ctx, data);
|
||||
log(ctx, `${data.toString().startsWith('# ') ? '\x1b[90mSkipped ' + data.toString().trim() + '\x1b[0m' : '\x1b[36mDownloaded' + data.toString().trim() + '\x1b[0m'}`);
|
||||
});
|
||||
proc.stderr.on('data', data => {
|
||||
error(ctx, data);
|
||||
|
|
Loading…
Add table
Reference in a new issue