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 c1fd578 commit 017d5c8Copy full SHA for 017d5c8
packages/restate-sdk/src/endpoint/node_endpoint.ts
@@ -132,7 +132,7 @@ export class NodeEndpoint implements RestateEndpoint {
132
133
listen(port?: number): Promise<number> {
134
const actualPort = port ?? parseInt(process.env.PORT ?? "9080");
135
- this.builder.rlog.info(`Listening on ${actualPort}...`);
+ this.builder.rlog.info(`Restate SDK started listening on ${actualPort}...`);
136
137
const server = http2.createServer(this.http2Handler());
138
0 commit comments