github.com/manicqin/nomad@v0.9.5/ui/app/components/freestyle/sg-log-stream.js (about)

     1  import Component from '@ember/component';
     2  
     3  export default Component.extend({
     4    mode1: 'stdout',
     5    isPlaying1: true,
     6  
     7    sampleOutput: `Sample output
     8  > 1
     9  > 2
    10  > 3
    11  [00:12:58] Log output here
    12  [00:15:29] [ERR] Uh oh
    13  Loading.
    14  Loading..
    15  Loading...
    16  
    17    >> Done! <<
    18  
    19  `,
    20  
    21    sampleError: `Sample error
    22  
    23  [====|--------------------] 20%
    24  
    25  !!! Unrecoverable error:
    26  
    27    Cannot continue beyond this point. Exception should be caught.
    28    This is not a mistake. You did something wrong. Check the code.
    29    No, you will not receive any more details or guidance from this
    30    error message.
    31  
    32  `,
    33  });