We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6ae94d + 4ffb1de commit 6446971Copy full SHA for 6446971
src/publish/confluence/confluence-verify.ts
@@ -4,6 +4,7 @@ import { getMessageFromAPIError } from "./confluence-helper.ts";
4
import { withSpinner } from "../../core/console.ts";
5
import { Confirm } from "cliffy/prompt/mod.ts";
6
import { ConfluenceParent, Space, User } from "./api/types.ts";
7
+import { trace } from "./confluence-logger.ts";
8
9
const verifyWithSpinner = async (
10
verifyCommand: () => Promise<void>,
@@ -34,6 +35,7 @@ const verifyLocationExists = async (server: string) => {
34
35
throw new Error("");
36
}
37
} catch (error) {
38
+ trace("server doesnt exist", error);
39
throw new Error(`${server} doesn't exist`);
40
41
};
0 commit comments