Commit a921c4f2 authored by bunsenstraat's avatar bunsenstraat

rm logs

parent c627b9a7
......@@ -82,7 +82,6 @@ class DGitProvider extends Plugin {
...await this.getGitConfig(),
...cmd
})
console.log('dgitstatus', status)
return status
}
......@@ -236,7 +235,6 @@ class DGitProvider extends Plugin {
...await this.parseInput(input),
...await this.getGitConfig()
}
console.log(cmd)
const result = await git.clone(cmd)
await this.call('fileManager', 'refresh')
......@@ -244,7 +242,6 @@ class DGitProvider extends Plugin {
}
async push (input) {
console.log('push')
const cmd = {
force: input.force,
ref: input.ref,
......@@ -257,7 +254,6 @@ class DGitProvider extends Plugin {
...await this.parseInput(input),
...await this.getGitConfig()
}
console.log(cmd)
return await git.push(cmd)
}
......@@ -273,7 +269,6 @@ class DGitProvider extends Plugin {
...await this.parseInput(input),
...await this.getGitConfig()
}
console.log(cmd)
const result = await git.pull(cmd)
await this.call('fileManager', 'refresh')
return result
......@@ -291,7 +286,6 @@ class DGitProvider extends Plugin {
...await this.parseInput(input),
...await this.getGitConfig()
}
console.log(cmd)
const result = await git.fetch(cmd)
await this.call('fileManager', 'refresh')
return result
......@@ -421,7 +415,6 @@ class DGitProvider extends Plugin {
const data = ipfs.get(cid, { timeout: 60000 })
for await (const file of data) {
if (file.path) result = true
console.log(file.path)
file.path = file.path.replace(cid, '')
if (!file.content) {
continue
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment