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.
1 parent e1e7926 commit 9bce7beCopy full SHA for 9bce7be
1 file changed
script/proto/proto.lua
@@ -231,6 +231,7 @@ end
231
function m.listen(mode, socketPort)
232
m.mode = mode
233
if mode == 'stdio' then
234
+ log.info('Listen Mode: stdio')
235
if platform.os == 'windows' then
236
local windows = require 'bee.windows'
237
windows.filemode(io.stdin, 'b')
@@ -246,6 +247,10 @@ function m.listen(mode, socketPort)
246
247
248
local server = net.listen('unix', unixPath)
249
250
+ log.info('Listen Mode: socket')
251
+ log.info('Listen Port:', socketPort)
252
+ log.info('Listen Path:', unixPath)
253
+
254
assert(server)
255
256
local dummyClient = {
0 commit comments