File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 8
8
Add a backtrace command to debugger, add console.trace command, set Error.stack in constructor (fix #2490)
9
9
Error.stack/stack dump now uses more standard file:line:col format
10
10
Out of memory errors now show a backtrace (previously it was very hard to track these down)
11
+ Increase chars shown in strings in console to 60
11
12
12
13
2v26 : nRF5x: ensure TIMER1_IRQHandler doesn't always wake idle loop up (fix #1900)
13
14
Puck.js: On v2.1 ensure Puck.mag behaves like other variants - just returning the last reading (avoids glitches when used with Puck.magOn)
Original file line number Diff line number Diff line change 21
21
22
22
const unsigned int JSON_LIMIT_AMOUNT = 15 ; // how big does an array get before we start to limit what we show
23
23
const unsigned int JSON_LIMITED_AMOUNT = 5 ; // When limited, how many items do we show at the beginning and end
24
- const unsigned int JSON_LIMIT_STRING_AMOUNT = 40 ; // how big are strings before we limit them?
25
- const unsigned int JSON_LIMITED_STRING_AMOUNT = 17 ; // When limited, how many chars do we show at the beginning and end
24
+ const unsigned int JSON_LIMIT_STRING_AMOUNT = 60 ; // how big are strings before we limit them?
25
+ const unsigned int JSON_LIMITED_STRING_AMOUNT = 27 ; // When limited, how many chars do we show at the beginning and end
26
26
const unsigned int JSON_ITEMS_ON_LINE_OBJECT = 4 ; // How many items are allowed end to end on a line.
27
27
const char * JSON_LIMIT_TEXT = " ... " ;
28
28
You can’t perform that action at this time.
0 commit comments