diff options
author | Michael Foiani <sotech117@Michaels-MacBook-Pro-5.local> | 2022-06-09 16:36:22 -0400 |
---|---|---|
committer | Michael Foiani <sotech117@Michaels-MacBook-Pro-5.local> | 2022-06-09 16:36:22 -0400 |
commit | f52e07fb2d1355fe783f05ced76555fa9980b692 (patch) | |
tree | 09bf75cad2fae0f216f76500de5dc36b87e29f9e /src | |
parent | b80480dbfdf0b7936587af4d8f0d82e9ec9d4854 (diff) |
remove console.logs and cleaup code
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/nodes/RecordingBox/RecordingView.tsx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/nodes/RecordingBox/RecordingView.tsx b/src/client/views/nodes/RecordingBox/RecordingView.tsx index e131420c3..701277cbd 100644 --- a/src/client/views/nodes/RecordingBox/RecordingView.tsx +++ b/src/client/views/nodes/RecordingBox/RecordingView.tsx @@ -67,7 +67,6 @@ export function RecordingView(props: IRecordingViewProps) { const inputPaths: string[] = []; const videoFiles: File[] = [] videos.forEach(async (vid, i) => { - console.log(vid) const videoFile = new File(vid.videoChunks, `segvideo${i}.mkv`, { type: vid.videoChunks[0].type, lastModified: Date.now() }); videoFiles.push(videoFile); @@ -79,7 +78,6 @@ export function RecordingView(props: IRecordingViewProps) { .map(res => (res.result instanceof Error) ? '' : res.result.accessPaths.agnostic.server) const result: Upload.AccessPathInfo | Error = await Networking.PostToServer('/concatVideos', serverPaths) - console.log(result) if (!(result instanceof Error)) { // convert this screenshotBox into normal videoBox props.setResult(result, trackScreen) } else { @@ -229,7 +227,6 @@ export function RecordingView(props: IRecordingViewProps) { const undoPrevious = (e: React.MouseEvent) => { e.stopPropagation(); - console.log('undo previous', doUndo) setDoUndo(prev => !prev); // const numVideos = videos.length // setRecordingTimer(numVideos == 1 ? 0 : videos[numVideos - 2].endTime) |