Is there a way to see the latest messages in the output window. i.e to "tail" the output instead of holding the position in output window. I have to keep scrolling to the bottom manually every time a couple of new messages are output?

can you check the status of the zoom in your browser window? It has happened before that when the zoom is something else than 100% the auto scroll would stop working.

Thanks ... that works! Though my eyes are getting on at this stage and I do need browser at 120%

Could I tail the console out in a SSH session instead? Where are the logs stored on the Bela and I could do that instead?

But don't answer tonight for Gods sake, I wasn't expecting an answer that quickly. It is 10 O'clock in the evening and you must need a rest!

    doconnell Could I tail the console out in a SSH session instead?

    That is not currently available via ssh (the console is logging to the client (browser) and not the server (Bela)).

    Maybe you could change the font size in a couple of places?

    This will change it for the text editor:

    diff --git a/IDE/public/js/bundle.js b/IDE/public/js/bundle.js
    index 2a7a4ee5..e8e0790f 100644
    --- a/IDE/public/js/bundle.js
    +++ b/IDE/public/js/bundle.js
    @@ -1857,6 +1857,9 @@ var EditorView = function (_View) {
                    // set theme
                    _this.editor.setTheme("ace/theme/chrome");
                    _this.editor.setShowPrintMargin(false);
    +               _this.editor.setOptions({
    +                       fontSize: "16pt"
    +               });
    
                    // autocomplete settings
                    _this.editor.setOptions({

    This will change the font size in the console:

    diff --git a/IDE/public/css/style.css b/IDE/public/css/style.css
    index 3ae02b1e..8fc97a28 100644
    --- a/IDE/public/css/style.css
    +++ b/IDE/public/css/style.css
    @@ -320,7 +320,7 @@ input[type="range"].range-slider {
       -webkit-box-sizing: border-box;
               box-sizing: border-box;
       font-family: inconsolata, monospace;
    -  font-size: 12px;
    +  font-size: 16px;
       height: 100%;
       position: relative;
       overflow-x: hidden;

    Hope this helps

    2 years later

    I'm running into the same problem, even after verifying that the zoom level is set to 100%. Interestingly enough, the console seems to jump to the latest message when there's a line that highlighted in yellow, but the white lines that start with bella: don't just continually get posted out of view.

    I'm running a recent version of chrome (Version 99.0.4844.51 (Official Build) (x86_64)) on os X (10.15). Does anyone have any suggestions?

      confirmed 🙁

      scientificsound Does anyone have any suggestions

      git bisect if you have the experience required to do that ... otherwise I will get to it at the end of next week (I think).

      22 days later