mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-21 06:32:16 +03:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import { getLogger } from "log-wrapper";
|
|
|
|
export function recordComboIntentWithSpecificity(
|
|
comboName: string,
|
|
specificityScore: number,
|
|
specificityLevel: string,
|
|
strategyModifier: string
|
|
): void {
|
|
getLogger().info(
|
|
{ comboName, specificityScore, specificityLevel, strategyModifier },
|
|
"combo manifest routing applied"
|
|
);
|
|
}
|