Skip to content

Commit a968e70

Browse files
committed
Output idle timeout if set on startup
1 parent 8596bd9 commit a968e70

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/node/main.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@ export const runCodeServer = async (
152152
logger.info(" - Not serving HTTPS")
153153
}
154154

155+
if (args["idle-timeout"]) {
156+
logger.info(` - Idle timeout set to ${args["idle-timeout"]} minutes`)
157+
}
158+
155159
if (args["disable-proxy"]) {
156160
logger.info(" - Proxy disabled")
157161
} else if (args["proxy-domain"].length > 0) {

0 commit comments

Comments
 (0)