MCPcopy
hub / github.com/jef/streetmerchant / noResponse

Function noResponse

src/logger.ts:173–184  ·  view source on GitHub ↗
(link: Link, store: Store, color?: boolean)

Source from the content-addressed store, hash-verified

171 return `✖ ${buildSetupString(topic, store)} :: ${message}`;
172 },
173 noResponse(link: Link, store: Store, color?: boolean): string {
174 if (color) {
175 return (
176 '✖ ' +
177 buildProductString(link, store, true) +
178 ' :: ' +
179 chalk.yellow('NO RESPONSE')
180 );
181 }
182
183 return `✖ ${buildProductString(link, store)} :: NO RESPONSE`;
184 },
185 outOfStock(link: Link, store: Store, color?: boolean): string {
186 if (color) {
187 return (

Callers

nothing calls this directly

Calls 1

buildProductStringFunction · 0.85

Tested by

no test coverage detected