remove debug log
This commit is contained in:
parent
f5fee16130
commit
bbee873b64
@ -143,6 +143,7 @@ if (VALID_REQURL) {
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
// biome-ignore lint: we want to ts-ignore the next line
|
// biome-ignore lint: we want to ts-ignore the next line
|
||||||
import { AuthType, BufferLike, createClient } from "webdav/dist/web/index.js";
|
import { AuthType, BufferLike, createClient } from "webdav/dist/web/index.js";
|
||||||
|
import isEqual from "lodash/isEqual";
|
||||||
|
|
||||||
export const DEFAULT_WEBDAV_CONFIG = {
|
export const DEFAULT_WEBDAV_CONFIG = {
|
||||||
address: "",
|
address: "",
|
||||||
@ -290,7 +291,6 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
this.webdavConfig.username !== "" &&
|
this.webdavConfig.username !== "" &&
|
||||||
this.webdavConfig.password !== ""
|
this.webdavConfig.password !== ""
|
||||||
) {
|
) {
|
||||||
console.debug("hey!");
|
|
||||||
this.client = createClient(this.webdavConfig.address, {
|
this.client = createClient(this.webdavConfig.address, {
|
||||||
username: tryEncodeUsernamePassword(this.webdavConfig.username),
|
username: tryEncodeUsernamePassword(this.webdavConfig.username),
|
||||||
password: tryEncodeUsernamePassword(this.webdavConfig.password),
|
password: tryEncodeUsernamePassword(this.webdavConfig.password),
|
||||||
@ -300,7 +300,6 @@ export class FakeFsWebdav extends FakeFs {
|
|||||||
? AuthType.Digest
|
? AuthType.Digest
|
||||||
: AuthType.Password,
|
: AuthType.Password,
|
||||||
});
|
});
|
||||||
console.debug("fuck!");
|
|
||||||
} else {
|
} else {
|
||||||
console.info("no password");
|
console.info("no password");
|
||||||
this.client = createClient(this.webdavConfig.address, {
|
this.client = createClient(this.webdavConfig.address, {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user