Skip to content

Commit

Permalink
verbosity cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
ruohki committed Jun 27, 2020
1 parent aa69cdf commit c2d3608
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions apps/frontend/src/app/components/Controller/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export default () => {
if (Launchpad) {
if (pad) pad.unload(sendSysEx);
Launchpad.initialize(sendSysEx);
console.log("Init")
setPad(Launchpad)
}

Expand Down Expand Up @@ -145,7 +144,7 @@ export default () => {
const pttStart = new PushToTalkStart();
const pttEnd = new PushToTalkEnd(pttStart.id);
pttStart.endId = pttEnd.id;
console.log(button.down)

if (enablePtt === "true") button.down.push(pttStart);
//@ts-ignore
button.down.push(new PlaySound(FileURI(payload.files[0].path), soundOutput))
Expand Down
1 change: 0 additions & 1 deletion libs/controller/src/launchpadpromk3/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ const ButtonToXY = (note: number): [ number, number ] => {
else return [(note % 10), 0]
}

console.log(...ButtonToXY(98))
const Component: React.SFC<IPadProps> = (props) => (
<PadContainerProMK3>
{lodash.reverse(lodash.range(0, 11)).map((y) => lodash.range(0,10).map((x) => {
Expand Down

0 comments on commit c2d3608

Please sign in to comment.