From 485039321e63c47e8423ab06b8195afbd44241db Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Sun, 14 Sep 2025 12:24:57 -0700 Subject: [PATCH] chore: document noWelcome --- site/src/content/docs/general/logging.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/site/src/content/docs/general/logging.mdx b/site/src/content/docs/general/logging.mdx index 86ead2d751..a12e7d9e3f 100644 --- a/site/src/content/docs/general/logging.mdx +++ b/site/src/content/docs/general/logging.mdx @@ -100,3 +100,13 @@ If using a custom base logger, you must manually configure your own log level in For more advanced Pino configuration options, see the [Pino API documentation](https://getpino.io/#/docs/api?id=export). +### Disable Welcome Message + +You can disable the default RivetKit welcome message with: + +```typescript +registry.runServer({ + noWelcome: true +}) +``` +