Skip to content

Commit

Permalink
Removed stupid console log
Browse files Browse the repository at this point in the history
  • Loading branch information
deckerego committed Sep 4, 2024
1 parent 17eb746 commit 3aaaf95
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/repositories/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class ConfigRepository {
}

get(key, fallback) {
console.log("NOOOOOO");
if(typeof key != 'string') throw new TypeError("Key is not a string");
if(! this.config) this.load();
return this.getEnv(key) || this.config[key] || fallback;
Expand Down

0 comments on commit 3aaaf95

Please sign in to comment.