Startup Messages
Customize startup messages in Logixlysia
Control how your application announces its startup with Logixlysia's flexible startup message system.
Basic Usage
logixlysia({
config: {
showStartupMessage: true,
startupMessageFormat: 'simple' // or 'banner'
}
})Message Formats
Simple Format
A clean, minimal startup message:
š¦ Logixlysia is running on http://localhost:3000Banner Format
A beautiful ASCII art banner (default):
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā ā
ā Elysia v1.4.19 ā
ā ā
ā š¦ Elysia is running at http://localhost:3001 ā
ā ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāConfiguration
| Option | Type | Description | Default |
|---|---|---|---|
showStartupMessage | boolean | Whether to show the startup message | true |
startupMessageFormat | 'simple' | 'banner' | The format of the startup message | 'banner' |
Best Practices
- Use
'banner'format in development for better visibility - Use
'simple'format in production for cleaner logs - Consider disabling startup messages in production if not needed