Skip to content

Commit c383e14

Browse files
committed
remove duplicated datapoint identifier in log
1 parent a606143 commit c383e14

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/crawl.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ export const crawlEndpoint = async (endpoint: Endpoint) => {
2424
});
2525
const body = await inverterResponse.json();
2626
const lineProtocol = await endpoint.writer(body);
27-
console.log(
28-
`${new Date().toISOString()}: [${endpoint.name}] ${lineProtocol}`,
29-
);
27+
console.log(`${new Date().toISOString()}: ${lineProtocol}`);
3028
};
3129

3230
export const crawlFronius = async () => {

0 commit comments

Comments
 (0)