diff options
author | Partouf <partouf@gmail.com> | 2018-11-01 03:37:52 +0100 |
---|---|---|
committer | Partouf <partouf@gmail.com> | 2018-11-01 03:37:52 +0100 |
commit | d55178efba000d7781d05a1a2251c855204aacc7 (patch) | |
tree | 64feb338e4f501abd16f2cfaa6a228f29ba22b04 /lib/compilers/golang.js | |
parent | 2fb8e8db85867a1ba520af189827a61da1646eb3 (diff) | |
download | compiler-explorer-d55178efba000d7781d05a1a2251c855204aacc7.tar.gz compiler-explorer-d55178efba000d7781d05a1a2251c855204aacc7.zip |
source
Diffstat (limited to 'lib/compilers/golang.js')
-rw-r--r-- | lib/compilers/golang.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/golang.js b/lib/compilers/golang.js index ca47d316f..bbf666576 100644 --- a/lib/compilers/golang.js +++ b/lib/compilers/golang.js @@ -61,7 +61,7 @@ class GolangCompiler extends BaseCompiler { } extractLogging(stdout) { - const reLogging = /^\/(.*):([0-9]*):([0-9]*):\s(.*)/i; + const reLogging = /^<source>:([0-9]*):([0-9]*):\s(.*)/i; return stdout.filter(obj => obj.text.match(reLogging)). map(obj => obj.text). join('\n'); |