diff options
author | Elizabeth <me@liz.coffee> | 2025-06-02 18:07:31 -0700 |
---|---|---|
committer | Elizabeth <me@liz.coffee> | 2025-06-02 18:07:31 -0700 |
commit | d9c418425b035f00c950e6a83df9470d7af80413 (patch) | |
tree | 07c7445d7800a6ac6a3cf6b404ebcf4e27aad245 /u/server/activity/fourohfour.ts | |
parent | 98f5c21aa65bbbca01a186a754249335b4afef57 (diff) | |
download | ci-d9c418425b035f00c950e6a83df9470d7af80413.tar.gz ci-d9c418425b035f00c950e6a83df9470d7af80413.zip |
Use log traceable in metric traceable
Diffstat (limited to 'u/server/activity/fourohfour.ts')
-rw-r--r-- | u/server/activity/fourohfour.ts | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/u/server/activity/fourohfour.ts b/u/server/activity/fourohfour.ts index ed8c7eb..33cfe5f 100644 --- a/u/server/activity/fourohfour.ts +++ b/u/server/activity/fourohfour.ts @@ -7,12 +7,13 @@ import { } from "@emprespresso/pengueno"; const messages = [ - "D: Meow-t found! Your API call ran away!", - "404-bidden! But like...in a cute way >:3 !", - ":o Your data went on a paw-sible vacation!", + "D: meow-t found! your api call ran away!", + "404-bidden! but like...in a cute way >:3 !", + ":< your data went on a paw-sible vacation!", "uwu~ not found, but found our hearts instead!", ]; -const randomFourOhFour = () => messages[Math.random() * messages.length]; +const randomFourOhFour = () => + messages[Math.floor(Math.random() * messages.length)]; export interface IFourOhFourActivity { fourOhFour: IActivity; |