Skip to content

Commit

Permalink
Changed order of loglevels in debug
Browse files Browse the repository at this point in the history
  • Loading branch information
klein0r committed May 3, 2024
1 parent 37c7028 commit 5f4d159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/public/google-blockly/own/blocks_system.js
Expand Up @@ -70,10 +70,10 @@ Blockly.Blocks['debug'] = {

this.appendDummyInput('Severity')
.appendField(new Blockly.FieldDropdown([
[Blockly.Translate('loglevel_debug'), 'debug'],
[Blockly.Translate('loglevel_info'), 'info'],
[Blockly.Translate('loglevel_warn'), 'warn'],
[Blockly.Translate('loglevel_error'), 'error'],
[Blockly.Translate('loglevel_debug'), 'debug'],
]), 'Severity');

this.setPreviousStatement(true, null);
Expand Down

0 comments on commit 5f4d159

Please sign in to comment.