Skip to content

Commit

Permalink
remove annoying debug log + release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bjesuiter committed Oct 22, 2024
1 parent 82c95a8 commit df97b5a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ await process.waitForExit();

# Changelog

## 1.0.1 - 2024-10-22

- remove annoying debug log in `PuppetProcess` constructor

## 1.0.0 - 2024-10-22

- first stable release
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codemonument/puppet-process",
"version": "1.0.0",
"version": "1.0.1",
"exports": {
".": "./src/shared/mod.ts",
"./deno": "./src/deno/mod.ts",
Expand Down
1 change: 0 additions & 1 deletion src/deno/puppet_process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ export class PuppetProcess implements PuppetProcessShape {
constructor(options: PuppetProcessOptions) {
this.options = options;
this.logger = options.logger ?? console as GenericLogger;
this.logger.debug("PuppetProcess created with options:", options);

const [executable, ...args] = options.command.split(" ");
const cmd = new Deno.Command(executable, {
Expand Down

0 comments on commit df97b5a

Please sign in to comment.