Skip to content

Commit

Permalink
Update DEBUG variable in cli.ts
Browse files Browse the repository at this point in the history
Update the DEBUG variable to use LOZ_DEBUG environment variable for
consistency and clarity.

Generated by gpt-3.5-turbo
  • Loading branch information
joone committed Feb 22, 2024
1 parent 85f3962 commit 2023438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import * as yargs from "yargs";
import { Loz } from "./index";

const LOZ_DEBUG = process.env.DEBUG === "true" ? true : false;
const DEBUG = process.env.LOZ_DEBUG === "true" ? true : false;

const args = yargs
.wrap(null)
Expand Down

0 comments on commit 2023438

Please sign in to comment.