Skip to content

Commit

Permalink
add post hog
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroHryshyn committed Apr 15, 2024
1 parent ca22712 commit 04bdf03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cli/src/executeMainThread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { readFile } from "node:fs/promises";
import { homedir } from "node:os";
import { join } from "node:path";
import {
ApplicationInsightsSender,
NullSender,
PostHogSender,
type TelemetrySender,
} from "@codemod-com/telemetry";

Expand Down Expand Up @@ -134,7 +134,7 @@ export const executeMainThread = async () => {
const telemetryService: TelemetrySender<TelemetryEvent> =
argv.telemetryDisable
? new NullSender()
: new ApplicationInsightsSender({
: new PostHogSender({
cloudRole: "CLI",
});

Expand Down

0 comments on commit 04bdf03

Please sign in to comment.