Skip to content

Commit

Permalink
refactor: Change console log to debug (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile authored Dec 10, 2021
1 parent 92d49f7 commit ac23158
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/camera/camera.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class CameraPWA {

const orientation = await this.getOrientation(photo);

console.log('Got orientation', orientation);
console.debug('Got orientation', orientation);

this.photoOrientation = orientation;

Expand Down Expand Up @@ -277,7 +277,7 @@ export class CameraPWA {
}

setFlashMode(mode: FlashMode) {
console.log('New flash mode: ', mode);
console.debug('New flash mode: ', mode);
this.flashMode = mode;
}

Expand All @@ -302,7 +302,7 @@ export class CameraPWA {
}

handleShutterClick = (_e: Event) => {
console.log()
console.debug('shutter click');
this.capture();
}

Expand Down Expand Up @@ -344,7 +344,7 @@ export class CameraPWA {

try {
const orientation = await this.getOrientation(file);
console.log('Got orientation', orientation);
console.debug('Got orientation', orientation);
this.photoOrientation = orientation;
} catch (e) {
}
Expand All @@ -353,7 +353,7 @@ export class CameraPWA {
}

handleVideoMetadata = (e: Event) => {
console.log('Video metadata', e);
console.debug('Video metadata', e);
}

iconExit() {
Expand Down

0 comments on commit ac23158

Please sign in to comment.