getMessage static method
Implementation
static String getMessage({
required DateTime timestamp,
required String clientIp,
required String serverIp,
required String method,
required String path,
}) {
final normalizedMethod = method.toUpperCase();
final normalizedPath = path.startsWith('/') ? path : '/$path';
return '${timestamp.millisecondsSinceEpoch}|$clientIp|$serverIp|$normalizedMethod|$normalizedPath';
}