Browse Source

transloadit: Include assembly ID in "created" log.

Renée Kooi 7 years ago
parent
commit
0bb449af66
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/plugins/Transloadit/index.js

+ 1 - 1
src/plugins/Transloadit/index.js

@@ -227,7 +227,7 @@ module.exports = class Transloadit extends Plugin {
       return this.connectSocket(assembly)
         .then(() => assembly)
     }).then((assembly) => {
-      this.uppy.log('[Transloadit] Created Assembly')
+      this.uppy.log(`[Transloadit] Created Assembly ${assembly.assembly_id}`)
       return assembly
     }).catch((err) => {
       this.uppy.info(this.i18n('creatingAssemblyFailed'), 'error', 0)