Skip to content

Commit 9baf1e9

Browse files
authored
Merge pull request #2399 from JammSpread/master
Tweak Coder Cloud logs
2 parents fac8091 + 04357dd commit 9baf1e9

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/node/coder-cloud.ts

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ function runAgent(...args: string[]): Promise<void> {
3434
}
3535

3636
export function coderCloudBind(csAddr: string, serverName = ""): Promise<void> {
37-
logger.info("Remember --link is a beta feature and requires being accepted for testing")
38-
logger.info("See https://github.com/cdr/code-server/discussions/2137")
3937
// addr needs to be in host:port format.
4038
// So we trim the protocol.
4139
csAddr = csAddr.replace(/^https?:\/\//, "")

src/node/entry.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ const main = async (args: DefaultedArgs): Promise<void> => {
123123
if (args.cert) {
124124
logger.info(` - Using certificate for HTTPS: ${humanPath(args.cert.value)}`)
125125
} else {
126-
logger.info(" - Not serving HTTPS")
126+
logger.info(` - Not serving HTTPS ${args.link ? "(disabled by --link)" : ""}`)
127127
}
128128

129129
if (args["proxy-domain"].length > 0) {

0 commit comments

Comments
 (0)