Skip to content

Commit

Permalink
fix: Removed unnecessary console.log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHauschildt committed Jul 14, 2023
1 parent a3c722f commit f6764b7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@imgly/background-removal",
"version": "1.0.5",
"version": "1.0.6",
"description": "Background Removal in the Browser",
"keywords": [
"background-removal",
Expand Down
3 changes: 0 additions & 3 deletions src/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ type ImageSource = ImageData | ArrayBuffer | Uint8Array | Blob | URL | string;

async function createSession(config: Config, imports: Imports) {
if (config.debug) console.debug('Loading model...');
console.log('createSession called');
console.log(config);
console.log(imports);
const model = config.model;
const blob = await Bundle.load(model, config);
const arrayBuffer = await blob.arrayBuffer();
Expand Down

0 comments on commit f6764b7

Please sign in to comment.