chore: remove sexy.pivoine.art
Some checks failed
Build and Push Buttplug Image / build (push) Failing after 27s
Build and Push Backend Image / build (push) Failing after 21s
Build and Push Frontend Image / build (push) Failing after 29s

This commit is contained in:
2026-03-11 16:53:52 +01:00
parent c3436233f4
commit 3e21b88e07
4 changed files with 7 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
/**
* Server-side logging utility for sexy.pivoine.art
* Server-side logging utility for sexy
* Provides structured logging with context and request tracing
*/
@@ -20,7 +20,7 @@ interface LogContext {
class Logger {
private isDev = process.env.NODE_ENV === "development";
private serviceName = "sexy.pivoine.art";
private serviceName = "sexy";
private formatLog(ctx: LogContext): string {
const { timestamp, level, message, context, requestId, userId, path, method, duration, error } =
@@ -126,7 +126,7 @@ class Logger {
};
console.log("\n" + "=".repeat(60));
console.log("🍑 sexy.pivoine.art - Server Starting 💜");
console.log("🍑 sexy - Server Starting 💜");
console.log("=".repeat(60));
console.log("\n📋 Environment Configuration:");
Object.entries(env).forEach(([key, value]) => {