OpenClawBot / src /infra /bonjour-errors.ts
darkfire514's picture
Upload 2526 files
fb4d8fe verified
export function formatBonjourError(err: unknown): string {
if (err instanceof Error) {
const msg = err.message || String(err);
return err.name && err.name !== "Error" ? `${err.name}: ${msg}` : msg;
}
return String(err);
}