Skip to content

Commit

Permalink
Removed forgotten 'console.log'
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrienCastex committed Aug 4, 2017
1 parent 28bc91e commit 3277908
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion lib/manager/v2/instances/PhysicalFileSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ var PhysicalFileSystem = (function (_super) {
this.type(ctx.context, path, function (e, type) {
if (e)
return callback(Errors_1.Errors.ResourceNotFound);
console.log(path.toString());
if (type.isDirectory) {
if (ctx.depth === 0)
return fs.rmdir(realPath, callback);
Expand Down
1 change: 0 additions & 1 deletion lib/server/v2/commands/Lock.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ function createLock(ctx, data, callback) {
});
}
catch (ex) {
console.log(ex);
ctx.setCode(WebDAVRequest_1.HTTPCodes.BadRequest);
callback();
return;
Expand Down
1 change: 0 additions & 1 deletion src/manager/v2/instances/PhysicalFileSystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ export class PhysicalFileSystem extends FileSystem
this.type(ctx.context, path, (e, type) => {
if(e)
return callback(Errors.ResourceNotFound);
console.log(path.toString());

if(type.isDirectory)
{
Expand Down
1 change: 0 additions & 1 deletion src/server/v2/commands/Lock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ function createLock(ctx : HTTPRequestContext, data : Buffer, callback)
}
catch(ex)
{
console.log(ex);
ctx.setCode(HTTPCodes.BadRequest);
callback();
return;
Expand Down

0 comments on commit 3277908

Please sign in to comment.