diff options
Diffstat (limited to 'app/relay/modules/pix2pix.js')
| -rw-r--r-- | app/relay/modules/pix2pix.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/relay/modules/pix2pix.js b/app/relay/modules/pix2pix.js index 67cca3e..97533d4 100644 --- a/app/relay/modules/pix2pix.js +++ b/app/relay/modules/pix2pix.js @@ -23,10 +23,14 @@ const fetch = { listen: (task, line, i) => { // relay the new dataset name from youtube-dl or w/e if ( line.match(/^created dataset: /) ) { + console.log("_______________________________________-") + console.log("_______________________________________-") + console.log("_______________________________________-") let filename = line.split(': ')[1].trim() task.dataset = filename.split('.')[0] task.opt.filename = filename - return { type: 'progress', action: 'resolve_dataset', task, } + console.log(">>>>>> created dataset", filename) + return { type: 'progress', action: 'resolve_dataset', task } } return null }, |
