Skip to content

Commit

Permalink
🐛 🔇 forgotten console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
jaandrle committed Feb 21, 2023
1 parent e9c4d9d commit 86a8a95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nodejsscript",
"version": "0.9.2",
"version": "0.9.3",
"author": "Jan Andrle <[email protected]>",
"license": "MIT",
"description": "A tool for writing better scripts",
Expand Down
1 change: 0 additions & 1 deletion src/Error.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export class ProcessOutput extends Error {
}
constructor({ name= "Process Output", is_async= true, message, code, ...rest }){
super(message);
console.log(rest);
this.name= "s.run"+(is_async ? "A" : "")+` [${name}]`;
for(const [ k, value ] of Object.entries(rest))
Reflect.defineProperty(this, k, { value, writable: false });
Expand Down

0 comments on commit 86a8a95

Please sign in to comment.