Merge pull request #1686 from irqbank/develop

Remove console messages
This commit is contained in:
Knut Sveidqvist 2020-09-20 14:31:31 +02:00 committed by GitHub
commit c17778ba47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 5 deletions

View File

@ -192,7 +192,6 @@ export const bounds = {
return this.verticalPos;
},
getBounds: function() {
console.log('here', this.data);
return { bounds: this.data, models: this.models };
}
};
@ -503,7 +502,6 @@ function adjustLoopHeightForWrap(loopWidths, msg, preMargin, postMargin, addLoop
*/
export const draw = function(text, id) {
conf = configApi.getConfig().sequence;
console.log('there ', conf);
parser.yy.clear();
parser.yy.setWrap(conf.wrap);
parser.parse(text + '\n');

View File

@ -166,6 +166,6 @@ class Theme {
export const getThemeVariables = userOverrides => {
const theme = new Theme();
theme.calculate(userOverrides);
console.info('Theme(dark)', { userOverrides, theme });
// console.info('Theme(dark)', { userOverrides, theme });
return theme;
};

View File

@ -147,6 +147,6 @@ class Theme {
export const getThemeVariables = userOverrides => {
const theme = new Theme();
theme.calculate(userOverrides);
console.info('Theme(forest)', { userOverrides, theme });
// console.info('Theme(forest)', { userOverrides, theme });
return theme;
};

View File

@ -185,6 +185,6 @@ class Theme {
export const getThemeVariables = userOverrides => {
const theme = new Theme();
theme.calculate(userOverrides);
console.info('Theme(neutral)', { userOverrides, theme });
// console.info('Theme(neutral)', { userOverrides, theme });
return theme;
};