Closed piyongcai closed 2 years ago
if you set multi-byte text for AppName, AppName displays confusion.
┌───────────────────────────────────────────────────┐ │ 零壹矩阵管理平台 V0.3 │ <---- HERE │ Fiber v2.38.1 │ │ http://127.0.0.1:10801 │ │ (bound on host 0.0.0.0 and port 10801) │ │ │ │ Handlers ........... 176 Processes ........... 1 │ │ Prefork ....... Disabled PID ............. 14316 │ └───────────────────────────────────────────────────┘
Steps to reproduce the behavior:
Friendly display of multi-byte text
V0 - V2.38.1
package main import "github.com/gofiber/fiber/v2" import "log" func main() { app := fiber.New(fiber.Config{ Prefork: false, CaseSensitive: true, StrictRouting: true, GETOnly: false, ServerHeader: "01-Matrix", AppName: "零壹矩阵管理平台 V0.3", }) log.Fatal(app.Listen(":3000")) }
Thanks for opening your first issue here! 🎉 Be sure to follow the issue template! If you need help or want to chat with us, join us on Discord https://gofiber.io/discord
Bug Description
if you set multi-byte text for AppName, AppName displays confusion.
How to Reproduce
Steps to reproduce the behavior:
Expected Behavior
Friendly display of multi-byte text
Fiber Version
V0 - V2.38.1
Code Snippet (optional)
Checklist: