Added support for Generic log files (#2796)

This commit is contained in:
Michael Schmidt 2021-03-21 16:47:49 +01:00 committed by GitHub
parent 1a2347a3b6
commit 2bc6475be0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 4071 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -733,6 +733,10 @@
"title": "LLVM IR",
"owner": "porglezomp"
},
"log": {
"title": "Log file",
"owner": "RunDevelopment"
},
"lolcode": {
"title": "LOLCODE",
"owner": "Golmote"

108
components/prism-log.js Normal file
View File

@ -0,0 +1,108 @@
// This is a language definition for generic log files.
// Since there is no one log format, this language definition has to support all formats to some degree.
//
// Based on https://github.com/MTDL9/vim-log-highlighting
Prism.languages.log = {
'string': {
// Single-quoted strings must not be confused with plain text. E.g. Can't isn't Susan's Chris' toy
pattern: /"(?:[^"\\\r\n]|\\.)*"|'(?![st] | \w)(?:[^'\\\r\n]|\\.)*'/,
greedy: true,
},
'level': [
{
pattern: /\b(?:ALERT|CRIT|CRITICAL|EMERG|EMERGENCY|ERR|ERROR|FAILURE|FATAL|SEVERE)\b/,
alias: ['error', 'important']
},
{
pattern: /\b(?:WARN|WARNING)\b/,
alias: ['warning', 'important']
},
{
pattern: /\b(?:DISPLAY|INFO|NOTICE|STATUS)\b/,
alias: ['info', 'keyword']
},
{
pattern: /\b(?:DEBUG|FINE)\b/,
alias: ['debug', 'keyword']
},
{
pattern: /\b(?:FINER|FINEST|TRACE|VERBOSE)\b/,
alias: ['trace', 'comment']
}
],
'property': {
pattern: /((?:^|[\]|])[ \t]*)[a-z_](?:[\w-]|\b\/\b)*(?:[. ]\(?\w(?:[\w-]|\b\/\b)*\)?)*:(?=\s)/im,
lookbehind: true
},
'separator': {
pattern: /(^|[^-+])-{3,}|={3,}|\*{3,}|- - /m,
lookbehind: true,
alias: 'comment'
},
'url': /\b(?:https?|ftp|file):\/\/[^\s|,;'"]*[^\s|,;'">.]/,
'email': {
pattern: /(^|\s)[-\w+.]+@[a-z][a-z0-9-]*(?:\.[a-z][a-z0-9-]*)+(?=\s)/,
lookbehind: true,
alias: 'url'
},
'ip-address': {
pattern: /\b(?:\d{1,3}(?:\.\d{1,3}){3})\b/i,
alias: 'constant'
},
'mac-address': {
pattern: /\b[a-f0-9]{2}(?::[a-f0-9]{2}){5}\b/i,
alias: 'constant'
},
'domain': {
pattern: /(^|\s)[a-z][a-z0-9-]*(?:\.[a-z][a-z0-9-]*)*\.[a-z][a-z0-9-]+(?=\s)/,
lookbehind: true,
alias: 'constant'
},
'uuid': {
pattern: /\b\w{8}-\w{4}-\w{4}-\w{4}-\w{12}\b/,
alias: 'constant'
},
'hash': {
pattern: /\b(?:[a-f0-9]{32}){1,2}\b/i,
alias: 'constant'
},
'file-path': {
pattern: /\b[a-z]:[\\/][^\s|,;:(){}\[\]"']+|(^|[\s:\[\](>|])\.{0,2}\/\w[^\s|,;:(){}\[\]"']*/i,
lookbehind: true,
greedy: true,
alias: 'string'
},
'date': {
pattern: RegExp(
/\b\d{4}[-/]\d{2}[-/]\d{2}T(?=\d{1,2}:)/.source +
'|' +
/\b\d{1,4}[-/ ](?:\d{1,2}|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[-/ ]\d{2,4}T?\b/.source +
'|' +
/\b(?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)(?:\s{1,2}(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec))?|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s{1,2}\d{1,2}\b/.source,
'i'
),
alias: 'number'
},
'time': {
pattern: /\b\d{1,2}:\d{1,2}:\d{1,2}(?:[.,:]\d+)?(?:\s?[+-]\d{2,4}|Z)?\b/,
alias: 'number'
},
'boolean': /\b(?:true|false|null)\b/i,
'number': {
pattern: /(^|[^.\w])(?:0x[a-f0-9]+|0o[0-7]+|0b[01]+|v?\d[\da-f]*(?:\.\d+)*(?:e[+-]?\d+)?[a-z]{0,3}\b)\b(?!\.\w)/i,
lookbehind: true
},
'operator': /[;:?<=>~/@!$%&+\-|^(){}*#]/,
'punctuation': /[\[\].,]/
};

1
components/prism-log.min.js vendored Normal file
View File

@ -0,0 +1 @@
Prism.languages.log={string:{pattern:/"(?:[^"\\\r\n]|\\.)*"|'(?![st] | \w)(?:[^'\\\r\n]|\\.)*'/,greedy:!0},level:[{pattern:/\b(?:ALERT|CRIT|CRITICAL|EMERG|EMERGENCY|ERR|ERROR|FAILURE|FATAL|SEVERE)\b/,alias:["error","important"]},{pattern:/\b(?:WARN|WARNING)\b/,alias:["warning","important"]},{pattern:/\b(?:DISPLAY|INFO|NOTICE|STATUS)\b/,alias:["info","keyword"]},{pattern:/\b(?:DEBUG|FINE)\b/,alias:["debug","keyword"]},{pattern:/\b(?:FINER|FINEST|TRACE|VERBOSE)\b/,alias:["trace","comment"]}],property:{pattern:/((?:^|[\]|])[ \t]*)[a-z_](?:[\w-]|\b\/\b)*(?:[. ]\(?\w(?:[\w-]|\b\/\b)*\)?)*:(?=\s)/im,lookbehind:!0},separator:{pattern:/(^|[^-+])-{3,}|={3,}|\*{3,}|- - /m,lookbehind:!0,alias:"comment"},url:/\b(?:https?|ftp|file):\/\/[^\s|,;'"]*[^\s|,;'">.]/,email:{pattern:/(^|\s)[-\w+.]+@[a-z][a-z0-9-]*(?:\.[a-z][a-z0-9-]*)+(?=\s)/,lookbehind:!0,alias:"url"},"ip-address":{pattern:/\b(?:\d{1,3}(?:\.\d{1,3}){3})\b/i,alias:"constant"},"mac-address":{pattern:/\b[a-f0-9]{2}(?::[a-f0-9]{2}){5}\b/i,alias:"constant"},domain:{pattern:/(^|\s)[a-z][a-z0-9-]*(?:\.[a-z][a-z0-9-]*)*\.[a-z][a-z0-9-]+(?=\s)/,lookbehind:!0,alias:"constant"},uuid:{pattern:/\b\w{8}-\w{4}-\w{4}-\w{4}-\w{12}\b/,alias:"constant"},hash:{pattern:/\b(?:[a-f0-9]{32}){1,2}\b/i,alias:"constant"},"file-path":{pattern:/\b[a-z]:[\\/][^\s|,;:(){}\[\]"']+|(^|[\s:\[\](>|])\.{0,2}\/\w[^\s|,;:(){}\[\]"']*/i,lookbehind:!0,greedy:!0,alias:"string"},date:{pattern:RegExp("\\b\\d{4}[-/]\\d{2}[-/]\\d{2}T(?=\\d{1,2}:)|\\b\\d{1,4}[-/ ](?:\\d{1,2}|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)[-/ ]\\d{2,4}T?\\b|\\b(?:(?:Mon|Tue|Wed|Thu|Fri|Sat|Sun)(?:\\s{1,2}(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec))?|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\\s{1,2}\\d{1,2}\\b","i"),alias:"number"},time:{pattern:/\b\d{1,2}:\d{1,2}:\d{1,2}(?:[.,:]\d+)?(?:\s?[+-]\d{2,4}|Z)?\b/,alias:"number"},boolean:/\b(?:true|false|null)\b/i,number:{pattern:/(^|[^.\w])(?:0x[a-f0-9]+|0o[0-7]+|0b[01]+|v?\d[\da-f]*(?:\.\d+)*(?:e[+-]?\d+)?[a-z]{0,3}\b)\b(?!\.\w)/i,lookbehind:!0},operator:/[;:?<=>~/@!$%&+\-|^(){}*#]/,punctuation:/[\[\].,]/};

10
examples/prism-log.html Normal file
View File

@ -0,0 +1,10 @@
<h2>Nginx example</h2>
<pre><code>/47.29.201.179 - - [28/Feb/2019:13:17:10 +0000] "GET /?p=1 HTTP/2.0" 200 5316 "https://domain1.com/?p=1" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36" "2.75"</code></pre>
<pre><code>Mar 19 22:10:18 xxxxxx journal: xxxxxxx.mylabserver.com nginx: photos.example.com 127.0.0.1 - - [19/Mar/2018:22:10:18 +0000] "GET / HTTP/1.1" 200 1863 "-" "curl/7.29.0" "-"
Mar 19 22:10:24 xxxxxxx journal: xxxxxxxx.mylabserver.com nginx: photos.example.com 127.0.0.1 - - [19/Mar/2018:22:10:24 +0000] "GET / HTTP/1.1" 200 53324 "-" "curl/7.29.0" "-"</code></pre>
<pre><code>TLSv1.2 AES128-SHA 1.1.1.1 "Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0"
TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 2.2.2.2 "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 3.3.3.3 "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0"
TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 4.4.4.4 "Mozilla/5.0 (Android 4.4.2; Tablet; rv:65.0) Gecko/65.0 Firefox/65.0"
TLSv1 AES128-SHA 5.5.5.5 "Mozilla/5.0 (Android 4.4.2; Tablet; rv:65.0) Gecko/65.0 Firefox/65.0"
TLSv1.2 ECDHE-RSA-CHACHA20-POLY1305 6.6.6.6 "Mozilla/5.0 (Linux; U; Android 5.0.2; en-US; XT1068 Build/LXB22.46-28) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 UCBrowser/12.10.2.1164 Mobile Safari/537.36"</code></pre>

View File

@ -126,6 +126,7 @@
"elisp": "Lisp",
"emacs-lisp": "Lisp",
"llvm": "LLVM IR",
"log": "Log file",
"lolcode": "LOLCODE",
"md": "Markdown",
"markup-templating": "Markup templating",

View File

@ -1 +1 @@
!function(){if("undefined"!=typeof self&&self.Prism&&self.document)if(Prism.plugins.toolbar){var i={none:"Plain text",plain:"Plain text",plaintext:"Plain text",text:"Plain text",txt:"Plain text",html:"HTML",xml:"XML",svg:"SVG",mathml:"MathML",ssml:"SSML",rss:"RSS",css:"CSS",clike:"C-like",js:"JavaScript",abap:"ABAP",abnf:"ABNF",al:"AL",antlr4:"ANTLR4",g4:"ANTLR4",apacheconf:"Apache Configuration",apl:"APL",aql:"AQL",arff:"ARFF",asciidoc:"AsciiDoc",adoc:"AsciiDoc",aspnet:"ASP.NET (C#)",asm6502:"6502 Assembly",autohotkey:"AutoHotkey",autoit:"AutoIt",basic:"BASIC",bbcode:"BBcode",bnf:"BNF",rbnf:"RBNF",bsl:"BSL (1C:Enterprise)",oscript:"OneScript",csharp:"C#",cs:"C#",dotnet:"C#",cpp:"C++",cfscript:"CFScript",cfc:"CFScript",cil:"CIL",cmake:"CMake",coffee:"CoffeeScript",conc:"Concurnas",csp:"Content-Security-Policy","css-extras":"CSS Extras",csv:"CSV",dataweave:"DataWeave",dax:"DAX",django:"Django/Jinja2",jinja2:"Django/Jinja2","dns-zone-file":"DNS zone file","dns-zone":"DNS zone file",dockerfile:"Docker",dot:"DOT (Graphviz)",gv:"DOT (Graphviz)",ebnf:"EBNF",editorconfig:"EditorConfig",ejs:"EJS",etlua:"Embedded Lua templating",erb:"ERB","excel-formula":"Excel Formula",xlsx:"Excel Formula",xls:"Excel Formula",fsharp:"F#","firestore-security-rules":"Firestore security rules",ftl:"FreeMarker Template Language",gml:"GameMaker Language",gamemakerlanguage:"GameMaker Language",gcode:"G-code",gdscript:"GDScript",gedcom:"GEDCOM",glsl:"GLSL",graphql:"GraphQL",hs:"Haskell",hcl:"HCL",hlsl:"HLSL",http:"HTTP",hpkp:"HTTP Public-Key-Pins",hsts:"HTTP Strict-Transport-Security",ichigojam:"IchigoJam","icu-message-format":"ICU Message Format",idr:"Idris",ignore:".ignore",gitignore:".gitignore",hgignore:".hgignore",npmignore:".npmignore",inform7:"Inform 7",javadoc:"JavaDoc",javadoclike:"JavaDoc-like",javastacktrace:"Java stack trace",jq:"JQ",jsdoc:"JSDoc","js-extras":"JS Extras",json:"JSON",webmanifest:"Web App Manifest",json5:"JSON5",jsonp:"JSONP",jsstacktrace:"JS stack trace","js-templates":"JS Templates",kts:"Kotlin Script",kt:"Kotlin",kumir:"KuMir (КуМир)",kum:"KuMir (КуМир)",latex:"LaTeX",tex:"TeX",context:"ConTeXt",lilypond:"LilyPond",ly:"LilyPond",emacs:"Lisp",elisp:"Lisp","emacs-lisp":"Lisp",llvm:"LLVM IR",lolcode:"LOLCODE",md:"Markdown","markup-templating":"Markup templating",matlab:"MATLAB",mel:"MEL",mongodb:"MongoDB",moon:"MoonScript",n1ql:"N1QL",n4js:"N4JS",n4jsd:"N4JS","nand2tetris-hdl":"Nand To Tetris HDL",naniscript:"Naninovel Script",nani:"Naninovel Script",nasm:"NASM",neon:"NEON",nginx:"nginx",nsis:"NSIS",objectivec:"Objective-C",objc:"Objective-C",ocaml:"OCaml",opencl:"OpenCL",openqasm:"OpenQasm",qasm:"OpenQasm",parigp:"PARI/GP",objectpascal:"Object Pascal",psl:"PATROL Scripting Language",pcaxis:"PC-Axis",px:"PC-Axis",peoplecode:"PeopleCode",pcode:"PeopleCode",php:"PHP",phpdoc:"PHPDoc","php-extras":"PHP Extras",plsql:"PL/SQL",powerquery:"PowerQuery",pq:"PowerQuery",mscript:"PowerQuery",powershell:"PowerShell",promql:"PromQL",properties:".properties",protobuf:"Protocol Buffers",purebasic:"PureBasic",pbfasm:"PureBasic",purs:"PureScript",py:"Python",q:"Q (kdb+ database)",qml:"QML",rkt:"Racket",jsx:"React JSX",tsx:"React TSX",renpy:"Ren'py",rpy:"Ren'py",rest:"reST (reStructuredText)",robotframework:"Robot Framework",robot:"Robot Framework",rb:"Ruby",sas:"SAS",sass:"Sass (Sass)",scss:"Sass (Scss)","shell-session":"Shell session","sh-session":"Shell session",shellsession:"Shell session",sml:"SML",smlnj:"SML/NJ",solidity:"Solidity (Ethereum)",sol:"Solidity (Ethereum)","solution-file":"Solution file",sln:"Solution file",soy:"Soy (Closure Template)",sparql:"SPARQL",rq:"SPARQL","splunk-spl":"Splunk SPL",sqf:"SQF: Status Quo Function (Arma 3)",sql:"SQL",iecst:"Structured Text (IEC 61131-3)","t4-templating":"T4 templating","t4-cs":"T4 Text Templates (C#)",t4:"T4 Text Templates (C#)","t4-vb":"T4 Text Templates (VB)",tap:"TAP",tt2:"Template Toolkit 2",toml:"TOML",trig:"TriG",ts:"TypeScript",tsconfig:"TSConfig",uscript:"UnrealScript",uc:"UnrealScript",uri:"URI",url:"URL",vbnet:"VB.Net",vhdl:"VHDL",vim:"vim","visual-basic":"Visual Basic",vba:"VBA",vb:"Visual Basic",wasm:"WebAssembly",wiki:"Wiki markup",xeoracube:"XeoraCube","xml-doc":"XML doc (.net)",xojo:"Xojo (REALbasic)",xquery:"XQuery",yaml:"YAML",yml:"YAML",yang:"YANG"};Prism.plugins.toolbar.registerButton("show-language",function(e){var a=e.element.parentNode;if(a&&/pre/i.test(a.nodeName)){var t,s=a.getAttribute("data-language")||i[e.language]||((t=e.language)?(t.substring(0,1).toUpperCase()+t.substring(1)).replace(/s(?=cript)/,"S"):t);if(s){var o=document.createElement("span");return o.textContent=s,o}}})}else console.warn("Show Languages plugin loaded before Toolbar plugin.")}();
!function(){if("undefined"!=typeof self&&self.Prism&&self.document)if(Prism.plugins.toolbar){var i={none:"Plain text",plain:"Plain text",plaintext:"Plain text",text:"Plain text",txt:"Plain text",html:"HTML",xml:"XML",svg:"SVG",mathml:"MathML",ssml:"SSML",rss:"RSS",css:"CSS",clike:"C-like",js:"JavaScript",abap:"ABAP",abnf:"ABNF",al:"AL",antlr4:"ANTLR4",g4:"ANTLR4",apacheconf:"Apache Configuration",apl:"APL",aql:"AQL",arff:"ARFF",asciidoc:"AsciiDoc",adoc:"AsciiDoc",aspnet:"ASP.NET (C#)",asm6502:"6502 Assembly",autohotkey:"AutoHotkey",autoit:"AutoIt",basic:"BASIC",bbcode:"BBcode",bnf:"BNF",rbnf:"RBNF",bsl:"BSL (1C:Enterprise)",oscript:"OneScript",csharp:"C#",cs:"C#",dotnet:"C#",cpp:"C++",cfscript:"CFScript",cfc:"CFScript",cil:"CIL",cmake:"CMake",coffee:"CoffeeScript",conc:"Concurnas",csp:"Content-Security-Policy","css-extras":"CSS Extras",csv:"CSV",dataweave:"DataWeave",dax:"DAX",django:"Django/Jinja2",jinja2:"Django/Jinja2","dns-zone-file":"DNS zone file","dns-zone":"DNS zone file",dockerfile:"Docker",dot:"DOT (Graphviz)",gv:"DOT (Graphviz)",ebnf:"EBNF",editorconfig:"EditorConfig",ejs:"EJS",etlua:"Embedded Lua templating",erb:"ERB","excel-formula":"Excel Formula",xlsx:"Excel Formula",xls:"Excel Formula",fsharp:"F#","firestore-security-rules":"Firestore security rules",ftl:"FreeMarker Template Language",gml:"GameMaker Language",gamemakerlanguage:"GameMaker Language",gcode:"G-code",gdscript:"GDScript",gedcom:"GEDCOM",glsl:"GLSL",graphql:"GraphQL",hs:"Haskell",hcl:"HCL",hlsl:"HLSL",http:"HTTP",hpkp:"HTTP Public-Key-Pins",hsts:"HTTP Strict-Transport-Security",ichigojam:"IchigoJam","icu-message-format":"ICU Message Format",idr:"Idris",ignore:".ignore",gitignore:".gitignore",hgignore:".hgignore",npmignore:".npmignore",inform7:"Inform 7",javadoc:"JavaDoc",javadoclike:"JavaDoc-like",javastacktrace:"Java stack trace",jq:"JQ",jsdoc:"JSDoc","js-extras":"JS Extras",json:"JSON",webmanifest:"Web App Manifest",json5:"JSON5",jsonp:"JSONP",jsstacktrace:"JS stack trace","js-templates":"JS Templates",kts:"Kotlin Script",kt:"Kotlin",kumir:"KuMir (КуМир)",kum:"KuMir (КуМир)",latex:"LaTeX",tex:"TeX",context:"ConTeXt",lilypond:"LilyPond",ly:"LilyPond",emacs:"Lisp",elisp:"Lisp","emacs-lisp":"Lisp",llvm:"LLVM IR",log:"Log file",lolcode:"LOLCODE",md:"Markdown","markup-templating":"Markup templating",matlab:"MATLAB",mel:"MEL",mongodb:"MongoDB",moon:"MoonScript",n1ql:"N1QL",n4js:"N4JS",n4jsd:"N4JS","nand2tetris-hdl":"Nand To Tetris HDL",naniscript:"Naninovel Script",nani:"Naninovel Script",nasm:"NASM",neon:"NEON",nginx:"nginx",nsis:"NSIS",objectivec:"Objective-C",objc:"Objective-C",ocaml:"OCaml",opencl:"OpenCL",openqasm:"OpenQasm",qasm:"OpenQasm",parigp:"PARI/GP",objectpascal:"Object Pascal",psl:"PATROL Scripting Language",pcaxis:"PC-Axis",px:"PC-Axis",peoplecode:"PeopleCode",pcode:"PeopleCode",php:"PHP",phpdoc:"PHPDoc","php-extras":"PHP Extras",plsql:"PL/SQL",powerquery:"PowerQuery",pq:"PowerQuery",mscript:"PowerQuery",powershell:"PowerShell",promql:"PromQL",properties:".properties",protobuf:"Protocol Buffers",purebasic:"PureBasic",pbfasm:"PureBasic",purs:"PureScript",py:"Python",q:"Q (kdb+ database)",qml:"QML",rkt:"Racket",jsx:"React JSX",tsx:"React TSX",renpy:"Ren'py",rpy:"Ren'py",rest:"reST (reStructuredText)",robotframework:"Robot Framework",robot:"Robot Framework",rb:"Ruby",sas:"SAS",sass:"Sass (Sass)",scss:"Sass (Scss)","shell-session":"Shell session","sh-session":"Shell session",shellsession:"Shell session",sml:"SML",smlnj:"SML/NJ",solidity:"Solidity (Ethereum)",sol:"Solidity (Ethereum)","solution-file":"Solution file",sln:"Solution file",soy:"Soy (Closure Template)",sparql:"SPARQL",rq:"SPARQL","splunk-spl":"Splunk SPL",sqf:"SQF: Status Quo Function (Arma 3)",sql:"SQL",iecst:"Structured Text (IEC 61131-3)","t4-templating":"T4 templating","t4-cs":"T4 Text Templates (C#)",t4:"T4 Text Templates (C#)","t4-vb":"T4 Text Templates (VB)",tap:"TAP",tt2:"Template Toolkit 2",toml:"TOML",trig:"TriG",ts:"TypeScript",tsconfig:"TSConfig",uscript:"UnrealScript",uc:"UnrealScript",uri:"URI",url:"URL",vbnet:"VB.Net",vhdl:"VHDL",vim:"vim","visual-basic":"Visual Basic",vba:"VBA",vb:"Visual Basic",wasm:"WebAssembly",wiki:"Wiki markup",xeoracube:"XeoraCube","xml-doc":"XML doc (.net)",xojo:"Xojo (REALbasic)",xquery:"XQuery",yaml:"YAML",yml:"YAML",yang:"YANG"};Prism.plugins.toolbar.registerButton("show-language",function(e){var a=e.element.parentNode;if(a&&/pre/i.test(a.nodeName)){var t,s=a.getAttribute("data-language")||i[e.language]||((t=e.language)?(t.substring(0,1).toUpperCase()+t.substring(1)).replace(/s(?=cript)/,"S"):t);if(s){var o=document.createElement("span");return o.textContent=s,o}}})}else console.warn("Show Languages plugin loaded before Toolbar plugin.")}();

View File

@ -0,0 +1,420 @@
[2020-12-07][23:26:36][DEBUG][discord_dispatch::application_manager:195] App started. version="1.10.5"
[2020-12-07][23:26:36][DEBUG][discord_dispatch::application_manager:1030] Searching for applications. install_path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" }
[2020-12-07][23:26:36][WARN][discord_dispatch::application_manager:1034] Failed to read install path. path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" } error=Os { code: 3, kind: NotFound, message: "Das System kann den angegebenen Pfad nicht finden." }
[2020-12-09][17:25:53][DEBUG][discord_dispatch::application_manager:195] App started. version="1.10.5"
[2020-12-09][17:25:53][DEBUG][discord_dispatch::application_manager:1030] Searching for applications. install_path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" }
[2020-12-09][17:25:53][WARN][discord_dispatch::application_manager:1034] Failed to read install path. path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" } error=Os { code: 3, kind: NotFound, message: "Das System kann den angegebenen Pfad nicht finden." }
[2020-12-10][12:30:59][DEBUG][discord_dispatch::application_manager:195] App started. version="1.10.5"
[2020-12-10][12:30:59][DEBUG][discord_dispatch::application_manager:1030] Searching for applications. install_path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" }
[2020-12-10][12:30:59][WARN][discord_dispatch::application_manager:1034] Failed to read install path. path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" } error=Os { code: 3, kind: NotFound, message: "Das System kann den angegebenen Pfad nicht finden." }
[2020-12-10][21:42:22][DEBUG][discord_dispatch::application_manager:195] App started. version="1.10.5"
[2020-12-10][21:42:22][DEBUG][discord_dispatch::application_manager:1030] Searching for applications. install_path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" }
[2020-12-10][21:42:22][WARN][discord_dispatch::application_manager:1034] Failed to read install path. path=AbsolutePath { path_buf: "C:\\Users\\micha\\AppData\\Local\\DiscordGames" } error=Os { code: 3, kind: NotFound, message: "Das System kann den angegebenen Pfad nicht finden." }
[2020-12-11][13:05:13][DEBUG][discord_dispatch::application_manager:195] App started. version="1.10.5"
----------------------------------------------------
[
["punctuation", "["],
["date", "2020-12-07"],
["punctuation", "]"],
["punctuation", "["],
["time", "23:26:36"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "195"],
["punctuation", "]"],
" App started",
["punctuation", "."],
" version",
["operator", "="],
["string", "\"1.10.5\""],
["punctuation", "["],
["date", "2020-12-07"],
["punctuation", "]"],
["punctuation", "["],
["time", "23:26:36"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1030"],
["punctuation", "]"],
" Searching for applications",
["punctuation", "."],
" install_path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-07"],
["punctuation", "]"],
["punctuation", "["],
["time", "23:26:36"],
["punctuation", "]"],
["punctuation", "["],
["level", "WARN"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1034"],
["punctuation", "]"],
" Failed to read install path",
["punctuation", "."],
" path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
" error",
["operator", "="],
"Os ",
["operator", "{"],
" code",
["operator", ":"],
["number", "3"],
["punctuation", ","],
" kind",
["operator", ":"],
" NotFound",
["punctuation", ","],
" message",
["operator", ":"],
["string", "\"Das System kann den angegebenen Pfad nicht finden.\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-09"],
["punctuation", "]"],
["punctuation", "["],
["time", "17:25:53"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "195"],
["punctuation", "]"],
" App started",
["punctuation", "."],
" version",
["operator", "="],
["string", "\"1.10.5\""],
["punctuation", "["],
["date", "2020-12-09"],
["punctuation", "]"],
["punctuation", "["],
["time", "17:25:53"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1030"],
["punctuation", "]"],
" Searching for applications",
["punctuation", "."],
" install_path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-09"],
["punctuation", "]"],
["punctuation", "["],
["time", "17:25:53"],
["punctuation", "]"],
["punctuation", "["],
["level", "WARN"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1034"],
["punctuation", "]"],
" Failed to read install path",
["punctuation", "."],
" path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
" error",
["operator", "="],
"Os ",
["operator", "{"],
" code",
["operator", ":"],
["number", "3"],
["punctuation", ","],
" kind",
["operator", ":"],
" NotFound",
["punctuation", ","],
" message",
["operator", ":"],
["string", "\"Das System kann den angegebenen Pfad nicht finden.\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-10"],
["punctuation", "]"],
["punctuation", "["],
["time", "12:30:59"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "195"],
["punctuation", "]"],
" App started",
["punctuation", "."],
" version",
["operator", "="],
["string", "\"1.10.5\""],
["punctuation", "["],
["date", "2020-12-10"],
["punctuation", "]"],
["punctuation", "["],
["time", "12:30:59"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1030"],
["punctuation", "]"],
" Searching for applications",
["punctuation", "."],
" install_path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-10"],
["punctuation", "]"],
["punctuation", "["],
["time", "12:30:59"],
["punctuation", "]"],
["punctuation", "["],
["level", "WARN"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1034"],
["punctuation", "]"],
" Failed to read install path",
["punctuation", "."],
" path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
" error",
["operator", "="],
"Os ",
["operator", "{"],
" code",
["operator", ":"],
["number", "3"],
["punctuation", ","],
" kind",
["operator", ":"],
" NotFound",
["punctuation", ","],
" message",
["operator", ":"],
["string", "\"Das System kann den angegebenen Pfad nicht finden.\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-10"],
["punctuation", "]"],
["punctuation", "["],
["time", "21:42:22"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "195"],
["punctuation", "]"],
" App started",
["punctuation", "."],
" version",
["operator", "="],
["string", "\"1.10.5\""],
["punctuation", "["],
["date", "2020-12-10"],
["punctuation", "]"],
["punctuation", "["],
["time", "21:42:22"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1030"],
["punctuation", "]"],
" Searching for applications",
["punctuation", "."],
" install_path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-10"],
["punctuation", "]"],
["punctuation", "["],
["time", "21:42:22"],
["punctuation", "]"],
["punctuation", "["],
["level", "WARN"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "1034"],
["punctuation", "]"],
" Failed to read install path",
["punctuation", "."],
" path",
["operator", "="],
"AbsolutePath ",
["operator", "{"],
" path_buf",
["operator", ":"],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Local\\\\DiscordGames\""],
["operator", "}"],
" error",
["operator", "="],
"Os ",
["operator", "{"],
" code",
["operator", ":"],
["number", "3"],
["punctuation", ","],
" kind",
["operator", ":"],
" NotFound",
["punctuation", ","],
" message",
["operator", ":"],
["string", "\"Das System kann den angegebenen Pfad nicht finden.\""],
["operator", "}"],
["punctuation", "["],
["date", "2020-12-11"],
["punctuation", "]"],
["punctuation", "["],
["time", "13:05:13"],
["punctuation", "]"],
["punctuation", "["],
["level", "DEBUG"],
["punctuation", "]"],
["punctuation", "["],
"discord_dispatch",
["operator", ":"],
["operator", ":"],
"application_manager",
["operator", ":"],
["number", "195"],
["punctuation", "]"],
" App started",
["punctuation", "."],
" version",
["operator", "="],
["string", "\"1.10.5\""]
]

View File

@ -0,0 +1,335 @@
2021-01-12T13:38:16Z containerd time="2021-01-12T13:38:16.314696100Z" level=info msg="starting containerd" revision=269548fa27e0089a8b8278fc4fc781d7f65a939b version=v1.4.3
2021-01-12T13:38:16Z containerd time="2021-01-12T13:38:16.314743500Z" level=debug msg="changing OOM score to -500"
2021-01-12T13:38:16Z containerd time="2021-01-12T13:38:16.336716900Z" level=info msg="loading plugin \"io.containerd.content.v1.content\"..." type=io.containerd.content.v1
2021-01-12T13:38:16Z containerd time="2021-01-12T13:38:16.336891100Z" level=info msg="loading plugin \"io.containerd.snapshotter.v1.aufs\"..." type=io.containerd.snapshotter.v1
2021-01-12T13:38:16Z containerd time="2021-01-12T13:38:16.338482500Z" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.aufs\"..." error="aufs is not supported (modprobe aufs failed: exit status 1 \"modprobe: can't change directory to '4.19.128-microsoft-standard': No such file or directory\\n\"): skip plugin" type=io.containerd.snapshotter.v1
2021-01-12T13:38:16Z containerd time="2021-01-12T13:38:16.338523700Z" level=info msg="loading plugin \"io.containerd.snapshotter.v1.btrfs\"..." type=io.containerd.snapshotter.v1
2021-01-12T13:38:16Z containerd time="2021-01-12T13:38:16.338835400Z" level=info msg="skip loading plugin \"io.containerd.snapshotter.v1.btrfs\"..." error="path /var/lib/desktop-containerd/daemon/io.containerd.snapshotter.v1.btrfs (ext4) must be a btrfs filesystem to be used with the btrfs snapshotter: skip plugin" type=io.containerd.snapshotter.v1
2021-03-05T17:58:29Z kmsg (977696) - 2021-03-05T17:58:28.2836488Z: init: (141) ERROR: StartHostListener:356: write failed 32
2021-03-05T17:58:30Z kmsg (977697) - 2021-03-05T17:58:29.2863708Z: init: (141) ERROR: StartHostListener:356: write failed 32
2021-03-05T17:58:31Z kmsg (977698) - 2021-03-05T17:58:30.2888998Z: init: (141) ERROR: StartHostListener:356: write failed 32
2021-03-05T17:58:32Z kmsg (977699) - 2021-03-05T17:58:31.2917718Z: init: (141) ERROR: StartHostListener:356: write failed 32
2021-03-05T17:58:33Z kmsg (977700) - 2021-03-05T17:58:32.2944488Z: init: (141) ERROR: StartHostListener:356: write failed 32
2021-03-05T17:58:34Z kmsg (977701) - 2021-03-05T17:58:33.2979438Z: init: (141) ERROR: StartHostListener:356: write failed 32
time="2021-01-12T14:38:11+01:00" level=info msg="🍀 socket server listening : \\\\.\\pipe\\dockerGuiToDriver"
time="2021-01-12T14:38:13+01:00" level=info msg="NewSharer: WSL2 engine is enabled so no file sharer is required."
time="2021-01-12T14:38:13+01:00" level=info msg=waitForDockerUp
time="2021-01-12T14:38:13+01:00" level=info msg="🍀 socket server starting : \\\\.\\pipe\\dockerGuiToDriver"
----------------------------------------------------
[
["date", "2021-01-12T"],
["time", "13:38:16Z"],
" containerd time",
["operator", "="],
["string", "\"2021-01-12T13:38:16.314696100Z\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"starting containerd\""],
" revision",
["operator", "="],
["number", "269548fa27e0089a8b8278fc4fc781d7f65a939b"],
" version",
["operator", "="],
["number", "v1.4.3"],
["date", "2021-01-12T"],
["time", "13:38:16Z"],
" containerd time",
["operator", "="],
["string", "\"2021-01-12T13:38:16.314743500Z\""],
" level",
["operator", "="],
"debug msg",
["operator", "="],
["string", "\"changing OOM score to -500\""],
["date", "2021-01-12T"],
["time", "13:38:16Z"],
" containerd time",
["operator", "="],
["string", "\"2021-01-12T13:38:16.336716900Z\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"loading plugin \\\"io.containerd.content.v1.content\\\"...\""],
" type",
["operator", "="],
"io",
["punctuation", "."],
"containerd",
["punctuation", "."],
"content",
["punctuation", "."],
"v1\r\n",
["date", "2021-01-12T"],
["time", "13:38:16Z"],
" containerd time",
["operator", "="],
["string", "\"2021-01-12T13:38:16.336891100Z\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"loading plugin \\\"io.containerd.snapshotter.v1.aufs\\\"...\""],
" type",
["operator", "="],
"io",
["punctuation", "."],
"containerd",
["punctuation", "."],
"snapshotter",
["punctuation", "."],
"v1\r\n",
["date", "2021-01-12T"],
["time", "13:38:16Z"],
" containerd time",
["operator", "="],
["string", "\"2021-01-12T13:38:16.338482500Z\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"skip loading plugin \\\"io.containerd.snapshotter.v1.aufs\\\"...\""],
" error",
["operator", "="],
["string", "\"aufs is not supported (modprobe aufs failed: exit status 1 \\\"modprobe: can't change directory to '4.19.128-microsoft-standard': No such file or directory\\\\n\\\"): skip plugin\""],
" type",
["operator", "="],
"io",
["punctuation", "."],
"containerd",
["punctuation", "."],
"snapshotter",
["punctuation", "."],
"v1\r\n",
["date", "2021-01-12T"],
["time", "13:38:16Z"],
" containerd time",
["operator", "="],
["string", "\"2021-01-12T13:38:16.338523700Z\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"loading plugin \\\"io.containerd.snapshotter.v1.btrfs\\\"...\""],
" type",
["operator", "="],
"io",
["punctuation", "."],
"containerd",
["punctuation", "."],
"snapshotter",
["punctuation", "."],
"v1\r\n",
["date", "2021-01-12T"],
["time", "13:38:16Z"],
" containerd time",
["operator", "="],
["string", "\"2021-01-12T13:38:16.338835400Z\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"skip loading plugin \\\"io.containerd.snapshotter.v1.btrfs\\\"...\""],
" error",
["operator", "="],
["string", "\"path /var/lib/desktop-containerd/daemon/io.containerd.snapshotter.v1.btrfs (ext4) must be a btrfs filesystem to be used with the btrfs snapshotter: skip plugin\""],
" type",
["operator", "="],
"io",
["punctuation", "."],
"containerd",
["punctuation", "."],
"snapshotter",
["punctuation", "."],
"v1\r\n\r\n",
["date", "2021-03-05T"],
["time", "17:58:29Z"],
" kmsg ",
["operator", "("],
["number", "977696"],
["operator", ")"],
["operator", "-"],
["date", "2021-03-05T"],
["time", "17:58:28.2836488Z"],
["operator", ":"],
" init",
["operator", ":"],
["operator", "("],
["number", "141"],
["operator", ")"],
["level", "ERROR"],
["operator", ":"],
" StartHostListener",
["operator", ":"],
["number", "356"],
["operator", ":"],
" write failed ",
["number", "32"],
["date", "2021-03-05T"],
["time", "17:58:30Z"],
" kmsg ",
["operator", "("],
["number", "977697"],
["operator", ")"],
["operator", "-"],
["date", "2021-03-05T"],
["time", "17:58:29.2863708Z"],
["operator", ":"],
" init",
["operator", ":"],
["operator", "("],
["number", "141"],
["operator", ")"],
["level", "ERROR"],
["operator", ":"],
" StartHostListener",
["operator", ":"],
["number", "356"],
["operator", ":"],
" write failed ",
["number", "32"],
["date", "2021-03-05T"],
["time", "17:58:31Z"],
" kmsg ",
["operator", "("],
["number", "977698"],
["operator", ")"],
["operator", "-"],
["date", "2021-03-05T"],
["time", "17:58:30.2888998Z"],
["operator", ":"],
" init",
["operator", ":"],
["operator", "("],
["number", "141"],
["operator", ")"],
["level", "ERROR"],
["operator", ":"],
" StartHostListener",
["operator", ":"],
["number", "356"],
["operator", ":"],
" write failed ",
["number", "32"],
["date", "2021-03-05T"],
["time", "17:58:32Z"],
" kmsg ",
["operator", "("],
["number", "977699"],
["operator", ")"],
["operator", "-"],
["date", "2021-03-05T"],
["time", "17:58:31.2917718Z"],
["operator", ":"],
" init",
["operator", ":"],
["operator", "("],
["number", "141"],
["operator", ")"],
["level", "ERROR"],
["operator", ":"],
" StartHostListener",
["operator", ":"],
["number", "356"],
["operator", ":"],
" write failed ",
["number", "32"],
["date", "2021-03-05T"],
["time", "17:58:33Z"],
" kmsg ",
["operator", "("],
["number", "977700"],
["operator", ")"],
["operator", "-"],
["date", "2021-03-05T"],
["time", "17:58:32.2944488Z"],
["operator", ":"],
" init",
["operator", ":"],
["operator", "("],
["number", "141"],
["operator", ")"],
["level", "ERROR"],
["operator", ":"],
" StartHostListener",
["operator", ":"],
["number", "356"],
["operator", ":"],
" write failed ",
["number", "32"],
["date", "2021-03-05T"],
["time", "17:58:34Z"],
" kmsg ",
["operator", "("],
["number", "977701"],
["operator", ")"],
["operator", "-"],
["date", "2021-03-05T"],
["time", "17:58:33.2979438Z"],
["operator", ":"],
" init",
["operator", ":"],
["operator", "("],
["number", "141"],
["operator", ")"],
["level", "ERROR"],
["operator", ":"],
" StartHostListener",
["operator", ":"],
["number", "356"],
["operator", ":"],
" write failed ",
["number", "32"],
"\r\n\r\ntime",
["operator", "="],
["string", "\"2021-01-12T14:38:11+01:00\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"🍀 socket server listening : \\\\\\\\.\\\\pipe\\\\dockerGuiToDriver\""],
"\r\ntime",
["operator", "="],
["string", "\"2021-01-12T14:38:13+01:00\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"NewSharer: WSL2 engine is enabled so no file sharer is required.\""],
"\r\ntime",
["operator", "="],
["string", "\"2021-01-12T14:38:13+01:00\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
"waitForDockerUp\r\ntime",
["operator", "="],
["string", "\"2021-01-12T14:38:13+01:00\""],
" level",
["operator", "="],
"info msg",
["operator", "="],
["string", "\"🍀 socket server starting : \\\\\\\\.\\\\pipe\\\\dockerGuiToDriver\""]
]

View File

@ -0,0 +1,762 @@
java.net.BindException: Address already in use
at sun.nio.ch.Net.bind0(Native Method) ~[na:1.8.0_171]
at sun.nio.ch.Net.bind(Net.java:433) ~[na:1.8.0_171]
at sun.nio.ch.Net.bind(Net.java:425) ~[na:1.8.0_171]
at sun.nio.ch.ServeISocketChannelImpl.bind(ServerSocketChannellmpl.java:223) ~[na:1.8.0_171]
org.apache.maven.lifecycle.LifecycleExecutionException: Error installing artifact's metadata: Error while deploying metadata: Failed to transfer file: http://repo.xxxx.com/foo/bar.pom. Return code is: 500
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:564)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalWithLifecycle(DefaultLifecycleExecutor.java:480)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoal(DefaultLifecycleExecutor.java:459)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoalAndHandleFailures(DefaultLifecycleExecutor.java:311)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeTaskSegments(DefaultLifecycleExecutor.java:278)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.execute(DefaultLifecycleExecutor.java:143)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:334)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:125)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:280)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.codehaus.classworlds.Launcher.launchEnhanced(Launcher.java:315)
at org.codehaus.classworlds.Launcher.launch(Launcher.java:255)
at org.codehaus.classworlds.Launcher.mainWithExitCode(Launcher.java:430)
at org.codehaus.classworlds.Launcher.main(Launcher.java:375)
Caused by: org.apache.maven.plugin.MojoExecutionException: Error installing artifact's metadata: Error while deploying metadata: Failed to transfer file: http://repo.xxxx.com/foo/bar.pom. Return code is: 500
at org.apache.maven.plugin.deploy.DeployMojo.execute(DeployMojo.java:174)
at org.apache.maven.plugin.DefaultPluginManager.executeMojo(DefaultPluginManager.java:443)
at org.apache.maven.lifecycle.DefaultLifecycleExecutor.executeGoals(DefaultLifecycleExecutor.java:539)
... 16 more
Caused by: org.apache.maven.artifact.deployer.ArtifactDeploymentException: Error installing artifact's metadata: Error while deploying metadata: Failed to transfer file: http://repo.xxxx.com/foo/bar.pom. Return code is: 500
at org.apache.maven.artifact.deployer.DefaultArtifactDeployer.deploy(DefaultArtifactDeployer.java:102)
at org.apache.maven.plugin.deploy.DeployMojo.execute(DeployMojo.java:162)
... 18 more
Caused by: org.apache.maven.artifact.repository.metadata.RepositoryMetadataDeploymentException: Error while deploying metadata: Failed to transfer file: http://repo.xxxx.com/foo/bar.pom. Return code is: 500
at org.apache.maven.artifact.repository.metadata.DefaultRepositoryMetadataManager.deploy(DefaultRepositoryMetadataManager.java:441)
at org.apache.maven.artifact.deployer.DefaultArtifactDeployer.deploy(DefaultArtifactDeployer.java:86)
... 19 more
Caused by: org.apache.maven.wagon.TransferFailedException: Failed to transfer file: http://repo.xxxx.com/foo/bar.pom. Return code is: 500
at org.apache.maven.wagon.providers.http.LightweightHttpWagon.put(LightweightHttpWagon.java:172)
at org.apache.maven.artifact.manager.DefaultWagonManager.putRemoteFile(DefaultWagonManager.java:237)
at org.apache.maven.artifact.manager.DefaultWagonManager.putArtifactMetadata(DefaultWagonManager.java:162)
at org.apache.maven.artifact.repository.metadata.DefaultRepositoryMetadataManager.deploy(DefaultRepositoryMetadataManager.java:437)
... 20 more
----------------------------------------------------
[
["property", "java.net.BindException:"],
" Address already in use\r\n\tat sun",
["punctuation", "."],
"nio",
["punctuation", "."],
"ch",
["punctuation", "."],
"Net",
["punctuation", "."],
"bind0",
["operator", "("],
"Native Method",
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"na",
["operator", ":"],
"1",
["punctuation", "."],
"8",
["punctuation", "."],
"0_171",
["punctuation", "]"],
"\r\n\tat sun",
["punctuation", "."],
"nio",
["punctuation", "."],
"ch",
["punctuation", "."],
"Net",
["punctuation", "."],
"bind",
["operator", "("],
"Net",
["punctuation", "."],
"java",
["operator", ":"],
["number", "433"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"na",
["operator", ":"],
"1",
["punctuation", "."],
"8",
["punctuation", "."],
"0_171",
["punctuation", "]"],
"\r\n\tat sun",
["punctuation", "."],
"nio",
["punctuation", "."],
"ch",
["punctuation", "."],
"Net",
["punctuation", "."],
"bind",
["operator", "("],
"Net",
["punctuation", "."],
"java",
["operator", ":"],
["number", "425"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"na",
["operator", ":"],
"1",
["punctuation", "."],
"8",
["punctuation", "."],
"0_171",
["punctuation", "]"],
"\r\n\tat sun",
["punctuation", "."],
"nio",
["punctuation", "."],
"ch",
["punctuation", "."],
"ServeISocketChannelImpl",
["punctuation", "."],
"bind",
["operator", "("],
"ServerSocketChannellmpl",
["punctuation", "."],
"java",
["operator", ":"],
["number", "223"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"na",
["operator", ":"],
"1",
["punctuation", "."],
"8",
["punctuation", "."],
"0_171",
["punctuation", "]"],
["property", "org.apache.maven.lifecycle.LifecycleExecutionException:"],
" Error installing artifact's metadata",
["operator", ":"],
" Error while deploying metadata",
["operator", ":"],
" Failed to transfer file",
["operator", ":"],
["url", "http://repo.xxxx.com/foo/bar.pom"],
["punctuation", "."],
" Return code is",
["operator", ":"],
["number", "500"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"lifecycle",
["punctuation", "."],
"DefaultLifecycleExecutor",
["punctuation", "."],
"executeGoals",
["operator", "("],
"DefaultLifecycleExecutor",
["punctuation", "."],
"java",
["operator", ":"],
["number", "564"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"lifecycle",
["punctuation", "."],
"DefaultLifecycleExecutor",
["punctuation", "."],
"executeGoalWithLifecycle",
["operator", "("],
"DefaultLifecycleExecutor",
["punctuation", "."],
"java",
["operator", ":"],
["number", "480"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"lifecycle",
["punctuation", "."],
"DefaultLifecycleExecutor",
["punctuation", "."],
"executeGoal",
["operator", "("],
"DefaultLifecycleExecutor",
["punctuation", "."],
"java",
["operator", ":"],
["number", "459"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"lifecycle",
["punctuation", "."],
"DefaultLifecycleExecutor",
["punctuation", "."],
"executeGoalAndHandleFailures",
["operator", "("],
"DefaultLifecycleExecutor",
["punctuation", "."],
"java",
["operator", ":"],
["number", "311"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"lifecycle",
["punctuation", "."],
"DefaultLifecycleExecutor",
["punctuation", "."],
"executeTaskSegments",
["operator", "("],
"DefaultLifecycleExecutor",
["punctuation", "."],
"java",
["operator", ":"],
["number", "278"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"lifecycle",
["punctuation", "."],
"DefaultLifecycleExecutor",
["punctuation", "."],
"execute",
["operator", "("],
"DefaultLifecycleExecutor",
["punctuation", "."],
"java",
["operator", ":"],
["number", "143"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"DefaultMaven",
["punctuation", "."],
"doExecute",
["operator", "("],
"DefaultMaven",
["punctuation", "."],
"java",
["operator", ":"],
["number", "334"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"DefaultMaven",
["punctuation", "."],
"execute",
["operator", "("],
"DefaultMaven",
["punctuation", "."],
"java",
["operator", ":"],
["number", "125"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"cli",
["punctuation", "."],
"MavenCli",
["punctuation", "."],
"main",
["operator", "("],
"MavenCli",
["punctuation", "."],
"java",
["operator", ":"],
["number", "280"],
["operator", ")"],
"\r\n at sun",
["punctuation", "."],
"reflect",
["punctuation", "."],
"NativeMethodAccessorImpl",
["punctuation", "."],
"invoke0",
["operator", "("],
"Native Method",
["operator", ")"],
"\r\n at sun",
["punctuation", "."],
"reflect",
["punctuation", "."],
"NativeMethodAccessorImpl",
["punctuation", "."],
"invoke",
["operator", "("],
"NativeMethodAccessorImpl",
["punctuation", "."],
"java",
["operator", ":"],
["number", "39"],
["operator", ")"],
"\r\n at sun",
["punctuation", "."],
"reflect",
["punctuation", "."],
"DelegatingMethodAccessorImpl",
["punctuation", "."],
"invoke",
["operator", "("],
"DelegatingMethodAccessorImpl",
["punctuation", "."],
"java",
["operator", ":"],
["number", "25"],
["operator", ")"],
"\r\n at java",
["punctuation", "."],
"lang",
["punctuation", "."],
"reflect",
["punctuation", "."],
"Method",
["punctuation", "."],
"invoke",
["operator", "("],
"Method",
["punctuation", "."],
"java",
["operator", ":"],
["number", "585"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"codehaus",
["punctuation", "."],
"classworlds",
["punctuation", "."],
"Launcher",
["punctuation", "."],
"launchEnhanced",
["operator", "("],
"Launcher",
["punctuation", "."],
"java",
["operator", ":"],
["number", "315"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"codehaus",
["punctuation", "."],
"classworlds",
["punctuation", "."],
"Launcher",
["punctuation", "."],
"launch",
["operator", "("],
"Launcher",
["punctuation", "."],
"java",
["operator", ":"],
["number", "255"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"codehaus",
["punctuation", "."],
"classworlds",
["punctuation", "."],
"Launcher",
["punctuation", "."],
"mainWithExitCode",
["operator", "("],
"Launcher",
["punctuation", "."],
"java",
["operator", ":"],
["number", "430"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"codehaus",
["punctuation", "."],
"classworlds",
["punctuation", "."],
"Launcher",
["punctuation", "."],
"main",
["operator", "("],
"Launcher",
["punctuation", "."],
"java",
["operator", ":"],
["number", "375"],
["operator", ")"],
["property", "Caused by:"],
["property", "org.apache.maven.plugin.MojoExecutionException:"],
" Error installing artifact's metadata",
["operator", ":"],
" Error while deploying metadata",
["operator", ":"],
" Failed to transfer file",
["operator", ":"],
["url", "http://repo.xxxx.com/foo/bar.pom"],
["punctuation", "."],
" Return code is",
["operator", ":"],
["number", "500"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"plugin",
["punctuation", "."],
"deploy",
["punctuation", "."],
"DeployMojo",
["punctuation", "."],
"execute",
["operator", "("],
"DeployMojo",
["punctuation", "."],
"java",
["operator", ":"],
["number", "174"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"plugin",
["punctuation", "."],
"DefaultPluginManager",
["punctuation", "."],
"executeMojo",
["operator", "("],
"DefaultPluginManager",
["punctuation", "."],
"java",
["operator", ":"],
["number", "443"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"lifecycle",
["punctuation", "."],
"DefaultLifecycleExecutor",
["punctuation", "."],
"executeGoals",
["operator", "("],
"DefaultLifecycleExecutor",
["punctuation", "."],
"java",
["operator", ":"],
["number", "539"],
["operator", ")"],
["punctuation", "."],
["punctuation", "."],
["punctuation", "."],
["number", "16"],
" more\r\n",
["property", "Caused by:"],
["property", "org.apache.maven.artifact.deployer.ArtifactDeploymentException:"],
" Error installing artifact's metadata",
["operator", ":"],
" Error while deploying metadata",
["operator", ":"],
" Failed to transfer file",
["operator", ":"],
["url", "http://repo.xxxx.com/foo/bar.pom"],
["punctuation", "."],
" Return code is",
["operator", ":"],
["number", "500"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"artifact",
["punctuation", "."],
"deployer",
["punctuation", "."],
"DefaultArtifactDeployer",
["punctuation", "."],
"deploy",
["operator", "("],
"DefaultArtifactDeployer",
["punctuation", "."],
"java",
["operator", ":"],
["number", "102"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"plugin",
["punctuation", "."],
"deploy",
["punctuation", "."],
"DeployMojo",
["punctuation", "."],
"execute",
["operator", "("],
"DeployMojo",
["punctuation", "."],
"java",
["operator", ":"],
["number", "162"],
["operator", ")"],
["punctuation", "."],
["punctuation", "."],
["punctuation", "."],
["number", "18"],
" more\r\n",
["property", "Caused by:"],
["property", "org.apache.maven.artifact.repository.metadata.RepositoryMetadataDeploymentException:"],
["property", "Error while deploying metadata:"],
["property", "Failed to transfer file:"],
["url", "http://repo.xxxx.com/foo/bar.pom"],
["punctuation", "."],
" Return code is",
["operator", ":"],
["number", "500"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"artifact",
["punctuation", "."],
"repository",
["punctuation", "."],
"metadata",
["punctuation", "."],
"DefaultRepositoryMetadataManager",
["punctuation", "."],
"deploy",
["operator", "("],
"DefaultRepositoryMetadataManager",
["punctuation", "."],
"java",
["operator", ":"],
["number", "441"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"artifact",
["punctuation", "."],
"deployer",
["punctuation", "."],
"DefaultArtifactDeployer",
["punctuation", "."],
"deploy",
["operator", "("],
"DefaultArtifactDeployer",
["punctuation", "."],
"java",
["operator", ":"],
["number", "86"],
["operator", ")"],
["punctuation", "."],
["punctuation", "."],
["punctuation", "."],
["number", "19"],
" more\r\n",
["property", "Caused by:"],
["property", "org.apache.maven.wagon.TransferFailedException:"],
["property", "Failed to transfer file:"],
["url", "http://repo.xxxx.com/foo/bar.pom"],
["punctuation", "."],
" Return code is",
["operator", ":"],
["number", "500"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"wagon",
["punctuation", "."],
"providers",
["punctuation", "."],
"http",
["punctuation", "."],
"LightweightHttpWagon",
["punctuation", "."],
"put",
["operator", "("],
"LightweightHttpWagon",
["punctuation", "."],
"java",
["operator", ":"],
["number", "172"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"artifact",
["punctuation", "."],
"manager",
["punctuation", "."],
"DefaultWagonManager",
["punctuation", "."],
"putRemoteFile",
["operator", "("],
"DefaultWagonManager",
["punctuation", "."],
"java",
["operator", ":"],
["number", "237"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"artifact",
["punctuation", "."],
"manager",
["punctuation", "."],
"DefaultWagonManager",
["punctuation", "."],
"putArtifactMetadata",
["operator", "("],
"DefaultWagonManager",
["punctuation", "."],
"java",
["operator", ":"],
["number", "162"],
["operator", ")"],
"\r\n at org",
["punctuation", "."],
"apache",
["punctuation", "."],
"maven",
["punctuation", "."],
"artifact",
["punctuation", "."],
"repository",
["punctuation", "."],
"metadata",
["punctuation", "."],
"DefaultRepositoryMetadataManager",
["punctuation", "."],
"deploy",
["operator", "("],
"DefaultRepositoryMetadataManager",
["punctuation", "."],
"java",
["operator", ":"],
["number", "437"],
["operator", ")"],
["punctuation", "."],
["punctuation", "."],
["punctuation", "."],
["number", "20"],
" more"
]

View File

@ -0,0 +1,419 @@
[07:28:17] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.12.2
[07:28:17] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2847 Initialized
[07:28:17] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
[07:28:18] [Server thread/INFO] [FML]: Invalid recipe found with multiple oredict ingredients in the same ingredient...
[07:28:19] [Server thread/INFO] [FML]: Replaced 1227 ore ingredients
[07:28:19] [Server thread/INFO] [FML]: Searching /home/minecraft/multicraft/servers/server99505/./mods for mods
[07:28:21] [Server thread/INFO] [FML]: Forge Mod Loader has identified 5 mods to load
[07:28:21] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
[07:28:21] [Server thread/FATAL] [FML]: net.minecraftforge.fml.common.MissingModsException: Mod thaumcraft (Thaumcraft) requires [baubles@[1.5.2,)]
[07:28:21] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
net.minecraftforge.fml.common.MissingModsException: Mod thaumcraft (Thaumcraft) requires [baubles@[1.5.2,)]
at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:266) ~[Loader.class:?]
at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:572) ~[Loader.class:?]
at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) ~[FMLServerHandler.class:?]
at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) ~[FMLCommonHandler.class:?]
at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) ~[nz.class:?]
at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_222]
----------------------------------------------------
[
["punctuation", "["],
["time", "07:28:17"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "INFO"],
["punctuation", "]"],
["punctuation", "["],
"net",
["punctuation", "."],
"minecraft",
["punctuation", "."],
"server",
["punctuation", "."],
"dedicated",
["punctuation", "."],
"DedicatedServer",
["punctuation", "]"],
["operator", ":"],
" Starting minecraft server version ",
["number", "1.12.2"],
["punctuation", "["],
["time", "07:28:17"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "INFO"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" MinecraftForge ",
["number", "v14.23.5.2847"],
" Initialized\r\n",
["punctuation", "["],
["time", "07:28:17"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "INFO"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" Starts to replace vanilla recipe ingredients with ore ingredients",
["punctuation", "."],
["punctuation", "["],
["time", "07:28:18"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "INFO"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" Invalid recipe found with multiple oredict ingredients in the same ingredient",
["punctuation", "."],
["punctuation", "."],
["punctuation", "."],
["punctuation", "["],
["time", "07:28:19"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "INFO"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" Replaced ",
["number", "1227"],
" ore ingredients\r\n",
["punctuation", "["],
["time", "07:28:19"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "INFO"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" Searching ",
["file-path", "/home/minecraft/multicraft/servers/server99505/./mods"],
" for mods\r\n",
["punctuation", "["],
["time", "07:28:21"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "INFO"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" Forge Mod Loader has identified ",
["number", "5"],
" mods to load\r\n",
["punctuation", "["],
["time", "07:28:21"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "WARN"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" Missing English translation for FML",
["operator", ":"],
" assets",
["operator", "/"],
"fml",
["operator", "/"],
"lang",
["operator", "/"],
"en_us",
["punctuation", "."],
"lang\r\n",
["punctuation", "["],
["time", "07:28:21"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "FATAL"],
["punctuation", "]"],
["punctuation", "["],
"FML",
["punctuation", "]"],
["operator", ":"],
" net",
["punctuation", "."],
"minecraftforge",
["punctuation", "."],
"fml",
["punctuation", "."],
"common",
["punctuation", "."],
"MissingModsException",
["operator", ":"],
" Mod thaumcraft ",
["operator", "("],
"Thaumcraft",
["operator", ")"],
" requires ",
["punctuation", "["],
"baubles",
["operator", "@"],
["punctuation", "["],
["number", "1.5.2"],
["punctuation", ","],
["operator", ")"],
["punctuation", "]"],
["punctuation", "["],
["time", "07:28:21"],
["punctuation", "]"],
["punctuation", "["],
"Server thread",
["operator", "/"],
["level", "ERROR"],
["punctuation", "]"],
["punctuation", "["],
"net",
["punctuation", "."],
"minecraft",
["punctuation", "."],
"server",
["punctuation", "."],
"MinecraftServer",
["punctuation", "]"],
["operator", ":"],
" Encountered an unexpected exception\r\n",
["property", "net.minecraftforge.fml.common.MissingModsException:"],
" Mod thaumcraft ",
["operator", "("],
"Thaumcraft",
["operator", ")"],
" requires ",
["punctuation", "["],
"baubles",
["operator", "@"],
["punctuation", "["],
["number", "1.5.2"],
["punctuation", ","],
["operator", ")"],
["punctuation", "]"],
"\r\n\tat net",
["punctuation", "."],
"minecraftforge",
["punctuation", "."],
"fml",
["punctuation", "."],
"common",
["punctuation", "."],
"Loader",
["punctuation", "."],
"sortModList",
["operator", "("],
"Loader",
["punctuation", "."],
"java",
["operator", ":"],
["number", "266"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"Loader",
["punctuation", "."],
"class",
["operator", ":"],
["operator", "?"],
["punctuation", "]"],
"\r\n\tat net",
["punctuation", "."],
"minecraftforge",
["punctuation", "."],
"fml",
["punctuation", "."],
"common",
["punctuation", "."],
"Loader",
["punctuation", "."],
"loadMods",
["operator", "("],
"Loader",
["punctuation", "."],
"java",
["operator", ":"],
["number", "572"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"Loader",
["punctuation", "."],
"class",
["operator", ":"],
["operator", "?"],
["punctuation", "]"],
"\r\n\tat net",
["punctuation", "."],
"minecraftforge",
["punctuation", "."],
"fml",
["punctuation", "."],
"server",
["punctuation", "."],
"FMLServerHandler",
["punctuation", "."],
"beginServerLoading",
["operator", "("],
"FMLServerHandler",
["punctuation", "."],
"java",
["operator", ":"],
["number", "98"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"FMLServerHandler",
["punctuation", "."],
"class",
["operator", ":"],
["operator", "?"],
["punctuation", "]"],
"\r\n\tat net",
["punctuation", "."],
"minecraftforge",
["punctuation", "."],
"fml",
["punctuation", "."],
"common",
["punctuation", "."],
"FMLCommonHandler",
["punctuation", "."],
"onServerStart",
["operator", "("],
"FMLCommonHandler",
["punctuation", "."],
"java",
["operator", ":"],
["number", "333"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"FMLCommonHandler",
["punctuation", "."],
"class",
["operator", ":"],
["operator", "?"],
["punctuation", "]"],
"\r\n\tat net",
["punctuation", "."],
"minecraft",
["punctuation", "."],
"server",
["punctuation", "."],
"dedicated",
["punctuation", "."],
"DedicatedServer",
["punctuation", "."],
"func_71197_b",
["operator", "("],
"DedicatedServer",
["punctuation", "."],
"java",
["operator", ":"],
["number", "125"],
["operator", ")"],
["operator", "~"],
["punctuation", "["],
"nz",
["punctuation", "."],
"class",
["operator", ":"],
["operator", "?"],
["punctuation", "]"],
"\r\n\tat net",
["punctuation", "."],
"minecraft",
["punctuation", "."],
"server",
["punctuation", "."],
"MinecraftServer",
["punctuation", "."],
"run",
["operator", "("],
"MinecraftServer",
["punctuation", "."],
"java",
["operator", ":"],
["number", "486"],
["operator", ")"],
["punctuation", "["],
"MinecraftServer",
["punctuation", "."],
"class",
["operator", ":"],
["operator", "?"],
["punctuation", "]"],
"\r\n\tat java",
["punctuation", "."],
"lang",
["punctuation", "."],
"Thread",
["punctuation", "."],
"run",
["operator", "("],
"Thread",
["punctuation", "."],
"java",
["operator", ":"],
["number", "748"],
["operator", ")"],
["punctuation", "["],
["operator", "?"],
["operator", ":"],
"1",
["punctuation", "."],
"8",
["punctuation", "."],
"0_222",
["punctuation", "]"]
]

View File

@ -0,0 +1,141 @@
47.29.201.179 - - [28/Feb/2019:13:17:10 +0000] "GET /?p=1 HTTP/2.0" 200 5316 "https://domain1.com/?p=1" "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36" "2.75"
Mar 19 22:10:18 xxxxxx journal: xxxxxxx.mylabserver.com nginx: photos.example.com 127.0.0.1 - - [19/Mar/2018:22:10:18 +0000] "GET / HTTP/1.1" 200 1863 "-" "curl/7.29.0" "-"
Mar 19 22:10:24 xxxxxxx journal: xxxxxxxx.mylabserver.com nginx: photos.example.com 127.0.0.1 - - [19/Mar/2018:22:10:24 +0000] "GET / HTTP/1.1" 200 53324 "-" "curl/7.29.0" "-"
TLSv1.2 AES128-SHA 1.1.1.1 "Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0"
TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 2.2.2.2 "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 3.3.3.3 "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0"
TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 4.4.4.4 "Mozilla/5.0 (Android 4.4.2; Tablet; rv:65.0) Gecko/65.0 Firefox/65.0"
TLSv1 AES128-SHA 5.5.5.5 "Mozilla/5.0 (Android 4.4.2; Tablet; rv:65.0) Gecko/65.0 Firefox/65.0"
TLSv1.2 ECDHE-RSA-CHACHA20-POLY1305 6.6.6.6 "Mozilla/5.0 (Linux; U; Android 5.0.2; en-US; XT1068 Build/LXB22.46-28) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 UCBrowser/12.10.2.1164 Mobile Safari/537.36"
----------------------------------------------------
[
["ip-address", "47.29.201.179"],
["separator", "- - "],
["punctuation", "["],
["date", "28/Feb/2019"],
["operator", ":"],
["time", "13:17:10 +0000"],
["punctuation", "]"],
["string", "\"GET /?p=1 HTTP/2.0\""],
["number", "200"],
["number", "5316"],
["string", "\"https://domain1.com/?p=1\""],
["string", "\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36\""],
["string", "\"2.75\""],
["date", "Mar 19"],
["time", "22:10:18"],
" xxxxxx journal",
["operator", ":"],
["domain", "xxxxxxx.mylabserver.com"],
" nginx",
["operator", ":"],
["domain", "photos.example.com"],
["ip-address", "127.0.0.1"],
["separator", "- - "],
["punctuation", "["],
["date", "19/Mar/2018"],
["operator", ":"],
["time", "22:10:18 +0000"],
["punctuation", "]"],
["string", "\"GET / HTTP/1.1\""],
["number", "200"],
["number", "1863"],
["string", "\"-\""],
["string", "\"curl/7.29.0\""],
["string", "\"-\""],
["date", "Mar 19"],
["time", "22:10:24"],
" xxxxxxx journal",
["operator", ":"],
["domain", "xxxxxxxx.mylabserver.com"],
" nginx",
["operator", ":"],
["domain", "photos.example.com"],
["ip-address", "127.0.0.1"],
["separator", "- - "],
["punctuation", "["],
["date", "19/Mar/2018"],
["operator", ":"],
["time", "22:10:24 +0000"],
["punctuation", "]"],
["string", "\"GET / HTTP/1.1\""],
["number", "200"],
["number", "53324"],
["string", "\"-\""],
["string", "\"curl/7.29.0\""],
["string", "\"-\""],
"\r\n\r\nTLSv1",
["punctuation", "."],
"2 AES128",
["operator", "-"],
"SHA ",
["ip-address", "1.1.1.1"],
["string", "\"Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0\""],
"\r\nTLSv1",
["punctuation", "."],
"2 ECDHE",
["operator", "-"],
"RSA",
["operator", "-"],
"AES128",
["operator", "-"],
"GCM",
["operator", "-"],
"SHA256 ",
["ip-address", "2.2.2.2"],
["string", "\"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\""],
"\r\nTLSv1",
["punctuation", "."],
"2 ECDHE",
["operator", "-"],
"RSA",
["operator", "-"],
"AES128",
["operator", "-"],
"GCM",
["operator", "-"],
"SHA256 ",
["ip-address", "3.3.3.3"],
["string", "\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:58.0) Gecko/20100101 Firefox/58.0\""],
"\r\nTLSv1",
["punctuation", "."],
"2 ECDHE",
["operator", "-"],
"RSA",
["operator", "-"],
"AES128",
["operator", "-"],
"GCM",
["operator", "-"],
"SHA256 ",
["ip-address", "4.4.4.4"],
["string", "\"Mozilla/5.0 (Android 4.4.2; Tablet; rv:65.0) Gecko/65.0 Firefox/65.0\""],
"\r\nTLSv1 AES128",
["operator", "-"],
"SHA ",
["ip-address", "5.5.5.5"],
["string", "\"Mozilla/5.0 (Android 4.4.2; Tablet; rv:65.0) Gecko/65.0 Firefox/65.0\""],
"\r\nTLSv1",
["punctuation", "."],
"2 ECDHE",
["operator", "-"],
"RSA",
["operator", "-"],
"CHACHA20",
["operator", "-"],
"POLY1305 ",
["ip-address", "6.6.6.6"],
["string", "\"Mozilla/5.0 (Linux; U; Android 5.0.2; en-US; XT1068 Build/LXB22.46-28) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 UCBrowser/12.10.2.1164 Mobile Safari/537.36\""]
]

View File

@ -0,0 +1,83 @@
npm ERR! code E404
npm ERR! 404 Not Found - GET https://registry.npmjs.org/asdasvsdffafwedsfvfasdfkigpodkfphd - Not found
npm ERR! 404
npm ERR! 404 'asdasvsdffafwedsfvfasdfkigpodkfphd@latest' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, http url, or git url.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\micha\AppData\Roaming\npm-cache\_logs\2021-03-08T19_15_44_229Z-debug.log
----------------------------------------------------
[
"npm ",
["level", "ERR"],
["operator", "!"],
" code E404\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["number", "404"],
" Not Found ",
["operator", "-"],
" GET ",
["url", "https://registry.npmjs.org/asdasvsdffafwedsfvfasdfkigpodkfphd"],
["operator", "-"],
" Not found\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["number", "404"],
"\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["number", "404"],
["string", "'asdasvsdffafwedsfvfasdfkigpodkfphd@latest'"],
" is not in the npm registry",
["punctuation", "."],
"\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["number", "404"],
" You should bug the author to publish it ",
["operator", "("],
"or use the name yourself",
["operator", "!"],
["operator", ")"],
"\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["number", "404"],
"\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["number", "404"],
" Note that you can also install from a\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["number", "404"],
" tarball",
["punctuation", ","],
" folder",
["punctuation", ","],
" http url",
["punctuation", ","],
" or git url",
["punctuation", "."],
"\r\n\r\nnpm ",
["level", "ERR"],
["operator", "!"],
" A complete log of this run can be found in",
["operator", ":"],
"\r\nnpm ",
["level", "ERR"],
["operator", "!"],
["file-path", "C:\\Users\\micha\\AppData\\Roaming\\npm-cache\\_logs\\2021-03-08T19_15_44_229Z-debug.log"]
]

View File

@ -0,0 +1,401 @@
0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Users\\micha\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'run',
1 verbose cli 'test:aliases'
1 verbose cli ]
2 info using npm@6.14.10
3 info using node@v14.15.4
4 verbose run-script [ 'pretest:aliases', 'test:aliases', 'posttest:aliases' ]
5 info lifecycle prismjs@1.23.0~pretest:aliases: prismjs@1.23.0
6 info lifecycle prismjs@1.23.0~test:aliases: prismjs@1.23.0
7 verbose lifecycle prismjs@1.23.0~test:aliases: unsafe-perm in lifecycle true
8 verbose lifecycle prismjs@1.23.0~test:aliases: PATH: ...
9 verbose lifecycle prismjs@1.23.0~test:aliases: CWD: C:\Users\micha\Git\prism
10 silly lifecycle prismjs@1.23.0~test:aliases: Args: [ '/d /s /c', 'mocha tests/aliases-test.js' ]
11 silly lifecycle prismjs@1.23.0~test:aliases: Returned: code: 1 signal: null
12 info lifecycle prismjs@1.23.0~test:aliases: Failed to exec test:aliases script
13 verbose stack Error: prismjs@1.23.0 test:aliases: `mocha tests/aliases-test.js`
13 verbose stack Exit status 1
13 verbose stack at EventEmitter.<anonymous> (C:\Users\micha\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\index.js:332:16)
13 verbose stack at EventEmitter.emit (events.js:315:20)
13 verbose stack at ChildProcess.<anonymous> (C:\Users\micha\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14)
13 verbose stack at ChildProcess.emit (events.js:315:20)
13 verbose stack at maybeClose (internal/child_process.js:1048:16)
13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:288:5)
14 verbose pkgid prismjs@1.23.0
15 verbose cwd C:\Users\micha\Git\prism
16 verbose Windows_NT 10.0.19042
17 verbose argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Users\\micha\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js" "run" "test:aliases"
18 verbose node v14.15.4
19 verbose npm v6.14.10
20 error code ELIFECYCLE
21 error errno 1
22 error prismjs@1.23.0 test:aliases: `mocha tests/aliases-test.js`
22 error Exit status 1
23 error Failed at the prismjs@1.23.0 test:aliases script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]
----------------------------------------------------
[
["number", "0"],
" info it worked if it ends with ok\r\n",
["number", "1"],
" verbose cli ",
["punctuation", "["],
["number", "1"],
" verbose cli ",
["string", "'C:\\\\Program Files\\\\nodejs\\\\node.exe'"],
["punctuation", ","],
["number", "1"],
" verbose cli ",
["string", "'C:\\\\Users\\\\micha\\\\AppData\\\\Roaming\\\\npm\\\\node_modules\\\\npm\\\\bin\\\\npm-cli.js'"],
["punctuation", ","],
["number", "1"],
" verbose cli ",
["string", "'run'"],
["punctuation", ","],
["number", "1"],
" verbose cli ",
["string", "'test:aliases'"],
["number", "1"],
" verbose cli ",
["punctuation", "]"],
["number", "2"],
" info using npm",
["operator", "@"],
["number", "6.14.10"],
["number", "3"],
" info using node",
["operator", "@"],
["number", "v14.15.4"],
["number", "4"],
" verbose run",
["operator", "-"],
"script ",
["punctuation", "["],
["string", "'pretest:aliases'"],
["punctuation", ","],
["string", "'test:aliases'"],
["punctuation", ","],
["string", "'posttest:aliases'"],
["punctuation", "]"],
["number", "5"],
" info lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"pretest",
["operator", ":"],
"aliases",
["operator", ":"],
" prismjs",
["operator", "@"],
["number", "1.23.0"],
["number", "6"],
" info lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"test",
["operator", ":"],
"aliases",
["operator", ":"],
" prismjs",
["operator", "@"],
["number", "1.23.0"],
["number", "7"],
" verbose lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"test",
["operator", ":"],
"aliases",
["operator", ":"],
" unsafe",
["operator", "-"],
"perm in lifecycle ",
["boolean", "true"],
["number", "8"],
" verbose lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"test",
["operator", ":"],
"aliases",
["operator", ":"],
" PATH",
["operator", ":"],
["punctuation", "."],
["punctuation", "."],
["punctuation", "."],
["number", "9"],
" verbose lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"test",
["operator", ":"],
"aliases",
["operator", ":"],
" CWD",
["operator", ":"],
["file-path", "C:\\Users\\micha\\Git\\prism"],
["number", "10"],
" silly lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"test",
["operator", ":"],
"aliases",
["operator", ":"],
" Args",
["operator", ":"],
["punctuation", "["],
["string", "'/d /s /c'"],
["punctuation", ","],
["string", "'mocha tests/aliases-test.js'"],
["punctuation", "]"],
["number", "11"],
" silly lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"test",
["operator", ":"],
"aliases",
["operator", ":"],
" Returned",
["operator", ":"],
" code",
["operator", ":"],
["number", "1"],
" signal",
["operator", ":"],
["boolean", "null"],
["number", "12"],
" info lifecycle prismjs",
["operator", "@"],
["number", "1.23.0"],
["operator", "~"],
"test",
["operator", ":"],
"aliases",
["operator", ":"],
" Failed to exec test",
["operator", ":"],
"aliases script\r\n",
["number", "13"],
" verbose stack Error",
["operator", ":"],
" prismjs",
["operator", "@"],
["number", "1.23.0"],
" test",
["operator", ":"],
"aliases",
["operator", ":"],
" `mocha tests",
["operator", "/"],
"aliases",
["operator", "-"],
"test",
["punctuation", "."],
"js`\r\n",
["number", "13"],
" verbose stack Exit status ",
["number", "1"],
["number", "13"],
" verbose stack at EventEmitter",
["punctuation", "."],
["operator", "<"],
"anonymous",
["operator", ">"],
["operator", "("],
["file-path", "C:\\Users\\micha\\AppData\\Roaming\\npm\\node_modules\\npm\\node_modules\\npm-lifecycle\\index.js"],
["operator", ":"],
["number", "332"],
["operator", ":"],
["number", "16"],
["operator", ")"],
["number", "13"],
" verbose stack at EventEmitter",
["punctuation", "."],
"emit ",
["operator", "("],
"events",
["punctuation", "."],
"js",
["operator", ":"],
["number", "315"],
["operator", ":"],
["number", "20"],
["operator", ")"],
["number", "13"],
" verbose stack at ChildProcess",
["punctuation", "."],
["operator", "<"],
"anonymous",
["operator", ">"],
["operator", "("],
["file-path", "C:\\Users\\micha\\AppData\\Roaming\\npm\\node_modules\\npm\\node_modules\\npm-lifecycle\\lib\\spawn.js"],
["operator", ":"],
["number", "55"],
["operator", ":"],
["number", "14"],
["operator", ")"],
["number", "13"],
" verbose stack at ChildProcess",
["punctuation", "."],
"emit ",
["operator", "("],
"events",
["punctuation", "."],
"js",
["operator", ":"],
["number", "315"],
["operator", ":"],
["number", "20"],
["operator", ")"],
["number", "13"],
" verbose stack at maybeClose ",
["operator", "("],
"internal",
["operator", "/"],
"child_process",
["punctuation", "."],
"js",
["operator", ":"],
["number", "1048"],
["operator", ":"],
["number", "16"],
["operator", ")"],
["number", "13"],
" verbose stack at Process",
["punctuation", "."],
"ChildProcess",
["punctuation", "."],
"_handle",
["punctuation", "."],
"onexit ",
["operator", "("],
"internal",
["operator", "/"],
"child_process",
["punctuation", "."],
"js",
["operator", ":"],
["number", "288"],
["operator", ":"],
["number", "5"],
["operator", ")"],
["number", "14"],
" verbose pkgid prismjs",
["operator", "@"],
["number", "1.23.0"],
["number", "15"],
" verbose cwd ",
["file-path", "C:\\Users\\micha\\Git\\prism"],
["number", "16"],
" verbose Windows_NT ",
["number", "10.0.19042"],
["number", "17"],
" verbose argv ",
["string", "\"C:\\\\Program Files\\\\nodejs\\\\node.exe\""],
["string", "\"C:\\\\Users\\\\micha\\\\AppData\\\\Roaming\\\\npm\\\\node_modules\\\\npm\\\\bin\\\\npm-cli.js\""],
["string", "\"run\""],
["string", "\"test:aliases\""],
["number", "18"],
" verbose node ",
["number", "v14.15.4"],
["number", "19"],
" verbose npm ",
["number", "v6.14.10"],
["number", "20"],
" error code ELIFECYCLE\r\n",
["number", "21"],
" error errno ",
["number", "1"],
["number", "22"],
" error prismjs",
["operator", "@"],
["number", "1.23.0"],
" test",
["operator", ":"],
"aliases",
["operator", ":"],
" `mocha tests",
["operator", "/"],
"aliases",
["operator", "-"],
"test",
["punctuation", "."],
"js`\r\n",
["number", "22"],
" error Exit status ",
["number", "1"],
["number", "23"],
" error Failed at the prismjs",
["operator", "@"],
["number", "1.23.0"],
" test",
["operator", ":"],
"aliases script",
["punctuation", "."],
["number", "23"],
" error This is probably not a problem with npm",
["punctuation", "."],
" There is likely additional logging output above",
["punctuation", "."],
["number", "24"],
" verbose exit ",
["punctuation", "["],
["number", "1"],
["punctuation", ","],
["boolean", "true"],
["punctuation", "]"]
]

View File

@ -0,0 +1,523 @@
00:29:13:356 [14204] | INFO | > Dumping swap chain description:
00:29:13:356 [14204] | INFO | +-----------------------------------------+-----------------------------------------+
00:29:13:356 [14204] | INFO | | Parameter | Value |
00:29:13:357 [14204] | INFO | +-----------------------------------------+-----------------------------------------+
00:29:13:357 [14204] | INFO | | flags | 0x4 |
00:29:13:357 [14204] | INFO | | surface | 0000000014A9A320 |
00:29:13:357 [14204] | INFO | | minImageCount | 4 |
00:29:13:357 [14204] | INFO | | imageFormat | VK_FORMAT_B8G8R8A8_UNORM |
00:29:13:358 [14204] | INFO | | imageColorSpace | 0 |
00:29:13:358 [14204] | INFO | | imageExtent | 1280 720 |
00:29:13:358 [14204] | INFO | | imageArrayLayers | 1 |
00:29:13:358 [14204] | INFO | | imageUsage | 0x13 |
00:29:13:358 [14204] | INFO | | imageSharingMode | 0 |
00:29:13:359 [14204] | INFO | | queueFamilyIndexCount | 0 |
00:29:13:359 [14204] | INFO | | preTransform | 0x1 |
00:29:13:359 [14204] | INFO | | compositeAlpha | 0x1 |
00:29:13:359 [14204] | INFO | | presentMode | 0 |
00:29:13:359 [14204] | INFO | | clipped | true |
00:29:13:359 [14204] | INFO | | oldSwapchain | 0000000000000000 |
00:29:13:360 [14204] | INFO | +-----------------------------------------+-----------------------------------------+
----------------------------------------------------
[
["time", "00:29:13:356"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", ">"],
" Dumping swap chain description",
["operator", ":"],
["time", "00:29:13:356"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "+"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "+"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "+"],
["time", "00:29:13:356"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" Parameter ",
["operator", "|"],
" Value ",
["operator", "|"],
["time", "00:29:13:357"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "+"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "+"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "+"],
["time", "00:29:13:357"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" flags ",
["operator", "|"],
["number", "0x4"],
["operator", "|"],
["time", "00:29:13:357"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" surface ",
["operator", "|"],
["number", "0000000014A9A320"],
["operator", "|"],
["time", "00:29:13:357"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" minImageCount ",
["operator", "|"],
["number", "4"],
["operator", "|"],
["time", "00:29:13:357"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" imageFormat ",
["operator", "|"],
" VK_FORMAT_B8G8R8A8_UNORM ",
["operator", "|"],
["time", "00:29:13:358"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" imageColorSpace ",
["operator", "|"],
["number", "0"],
["operator", "|"],
["time", "00:29:13:358"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" imageExtent ",
["operator", "|"],
["number", "1280"],
["number", "720"],
["operator", "|"],
["time", "00:29:13:358"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" imageArrayLayers ",
["operator", "|"],
["number", "1"],
["operator", "|"],
["time", "00:29:13:358"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" imageUsage ",
["operator", "|"],
["number", "0x13"],
["operator", "|"],
["time", "00:29:13:358"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" imageSharingMode ",
["operator", "|"],
["number", "0"],
["operator", "|"],
["time", "00:29:13:359"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" queueFamilyIndexCount ",
["operator", "|"],
["number", "0"],
["operator", "|"],
["time", "00:29:13:359"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" preTransform ",
["operator", "|"],
["number", "0x1"],
["operator", "|"],
["time", "00:29:13:359"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" compositeAlpha ",
["operator", "|"],
["number", "0x1"],
["operator", "|"],
["time", "00:29:13:359"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" presentMode ",
["operator", "|"],
["number", "0"],
["operator", "|"],
["time", "00:29:13:359"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" clipped ",
["operator", "|"],
["boolean", "true"],
["operator", "|"],
["time", "00:29:13:359"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "|"],
" oldSwapchain ",
["operator", "|"],
["number", "0000000000000000"],
["operator", "|"],
["time", "00:29:13:360"],
["punctuation", "["],
["number", "14204"],
["punctuation", "]"],
["operator", "|"],
["level", "INFO"],
["operator", "|"],
["operator", "+"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "+"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "-"],
["operator", "+"]
]

View File

@ -0,0 +1,162 @@
23-Jan-2020 16:05:51.597 INFO [http-nio-8080-exec-9] org.apache.catalina.core.ApplicationContext.log HTMLManager: init: Associated with Deployer 'Catalina:type=Deployer,host=localhost'
23-Jan-2020 16:05:51.598 INFO [http-nio-8080-exec-9] org.apache.catalina.core.ApplicationContext.log HTMLManager: init: Global resources are available
23-Jan-2020 16:05:51.606 INFO [http-nio-8080-exec-9] org.apache.catalina.core.ApplicationContext.log HTMLManager: list: Listing contexts for virtual host 'localhost'
23-Jan-2020 16:06:11.673 INFO [http-nio-8080-exec-8] org.apache.catalina.core.ApplicationContext.log HTMLManager: list: Listing contexts for virtual host 'localhost'
21-Nov-2017 11:15:34.986 INFO [main] org.camunda.commons.logging.BaseLogger.logInfo ENGINE-08046 Found camunda bpm platform configuration in CATALINA_BASE/CATALINA_HOME conf directory [C:\asdasd.xml] at 'file:/C:/asdasd.xml'
21-Nov-2017 11:15:35.310 INFO [main] org.camunda.commons.logging.BaseLogger.logInfo ENGINE-12003 Plugin 'ProcessApplicationEventListenerPlugin' activated on process engine 'default'
21-Nov-2017 11:15:35.319 INFO [main] org.camunda.commons.logging.BaseLogger.logInfo ENGINE-12003 Plugin 'SpinProcessEnginePlugin' activated on process engine 'default'
----------------------------------------------------
[
["date", "23-Jan-2020"],
["time", "16:05:51.597"],
["level", "INFO"],
["punctuation", "["],
"http",
["operator", "-"],
"nio",
["operator", "-"],
["number", "8080"],
["operator", "-"],
"exec",
["operator", "-"],
["number", "9"],
["punctuation", "]"],
["property", "org.apache.catalina.core.ApplicationContext.log HTMLManager:"],
["property", "init:"],
" Associated with Deployer ",
["string", "'Catalina:type=Deployer,host=localhost'"],
["date", "23-Jan-2020"],
["time", "16:05:51.598"],
["level", "INFO"],
["punctuation", "["],
"http",
["operator", "-"],
"nio",
["operator", "-"],
["number", "8080"],
["operator", "-"],
"exec",
["operator", "-"],
["number", "9"],
["punctuation", "]"],
["property", "org.apache.catalina.core.ApplicationContext.log HTMLManager:"],
["property", "init:"],
" Global resources are available\r\n",
["date", "23-Jan-2020"],
["time", "16:05:51.606"],
["level", "INFO"],
["punctuation", "["],
"http",
["operator", "-"],
"nio",
["operator", "-"],
["number", "8080"],
["operator", "-"],
"exec",
["operator", "-"],
["number", "9"],
["punctuation", "]"],
["property", "org.apache.catalina.core.ApplicationContext.log HTMLManager:"],
["property", "list:"],
" Listing contexts for virtual host ",
["string", "'localhost'"],
["date", "23-Jan-2020"],
["time", "16:06:11.673"],
["level", "INFO"],
["punctuation", "["],
"http",
["operator", "-"],
"nio",
["operator", "-"],
["number", "8080"],
["operator", "-"],
"exec",
["operator", "-"],
["number", "8"],
["punctuation", "]"],
["property", "org.apache.catalina.core.ApplicationContext.log HTMLManager:"],
["property", "list:"],
" Listing contexts for virtual host ",
["string", "'localhost'"],
["date", "21-Nov-2017"],
["time", "11:15:34.986"],
["level", "INFO"],
["punctuation", "["],
"main",
["punctuation", "]"],
" org",
["punctuation", "."],
"camunda",
["punctuation", "."],
"commons",
["punctuation", "."],
"logging",
["punctuation", "."],
"BaseLogger",
["punctuation", "."],
"logInfo ENGINE",
["operator", "-"],
["number", "08046"],
" Found camunda bpm platform configuration in CATALINA_BASE",
["operator", "/"],
"CATALINA_HOME conf directory ",
["punctuation", "["],
["file-path", "C:\\asdasd.xml"],
["punctuation", "]"],
" at ",
["string", "'file:/C:/asdasd.xml'"],
["date", "21-Nov-2017"],
["time", "11:15:35.310"],
["level", "INFO"],
["punctuation", "["],
"main",
["punctuation", "]"],
" org",
["punctuation", "."],
"camunda",
["punctuation", "."],
"commons",
["punctuation", "."],
"logging",
["punctuation", "."],
"BaseLogger",
["punctuation", "."],
"logInfo ENGINE",
["operator", "-"],
["number", "12003"],
" Plugin ",
["string", "'ProcessApplicationEventListenerPlugin'"],
" activated on process engine ",
["string", "'default'"],
["date", "21-Nov-2017"],
["time", "11:15:35.319"],
["level", "INFO"],
["punctuation", "["],
"main",
["punctuation", "]"],
" org",
["punctuation", "."],
"camunda",
["punctuation", "."],
"commons",
["punctuation", "."],
"logging",
["punctuation", "."],
"BaseLogger",
["punctuation", "."],
"logInfo ENGINE",
["operator", "-"],
["number", "12003"],
" Plugin ",
["string", "'SpinProcessEnginePlugin'"],
" activated on process engine ",
["string", "'default'"]
]

View File

@ -0,0 +1,278 @@
4/1/2020 14:15:27 - PFRO Error: \??\C:\Windows\system32\spool\DRIVERS\x64\3\New\FXSWZRD.DLL, \??\C:\Windows\system32\spool\DRIVERS\x64\3\FXSWZRD.DLL, 0xc000003a
4/1/2020 14:15:27 - PFRO Error: \??\C:\Windows\system32\spool\DRIVERS\x64\3\New\FXSTIFF.DLL, \??\C:\Windows\system32\spool\DRIVERS\x64\3\FXSTIFF.DLL, 0xc000003a
4/1/2020 14:15:27 - PFRO Error: \??\C:\Windows\system32\spool\DRIVERS\x64\3\New\FXSRES.DLL, \??\C:\Windows\system32\spool\DRIVERS\x64\3\FXSRES.DLL, 0xc000003a
4/1/2020 14:15:27 - PFRO Error: \??\C:\Windows\system32\spool\DRIVERS\x64\3\New\FXSAPI.DLL, \??\C:\Windows\system32\spool\DRIVERS\x64\3\FXSAPI.DLL, 0xc000003a
AudMig: Device Ids match - {5}.\?hdaudio#func_03&ven_40de&dev_0083&subsys_50de130f&rev_4003#1&13efefe3&0&0004#{6993ad03-95ef-33d0-a2cc-00a0c9322596} opo04/00040002 {2}.\?hdaudio#func_01&ven_40de&dev_0084&subsys_10de310f&rev_1004#2&22efefe2&0&0004#{6994ad04-94ef-32d0-a1cc-00a0c9181396} opo04/00030001
AudMig: Migrated {a31c434e-df4c-1efd-8010-67d416a840e0},2 property at 3
AudMig: Migrated {9627b1b9-13ee-5c33-b54c-7b3555c991cc},4 property at 7
AudMig: Migrated {339abffc-30a7-47ce-af08-68c9a7d74466},22 property at 14
AudMig: Migrating role and device state from SOFTWAREMicrosoftWindowsCurrentVersionMMDevicesAudioRender{8B3B1D07-43C4-2BB5-B0ED-DCD49D5F3BCC} to SOFTWAREMicrosoftWindowsCurrentVersionMMDevicesAudioRender{C4B8172F-B522-160B-A3A9-180AC778147E}
AudMig: Device Ids match - {5}.\?hdaudio#func_01&ven_40de&dev_0081&subsys_20de310f&rev_2004#2&22efefe1&0&0005#{6993ad02-93ef-31d0-a5cc-00a0c9354396} opo05/00020000 {2}.\?hdaudio#func_03&ven_30de&dev_0081&subsys_30de240f&rev_4002#2&34efefe4&0&0003#{6991ad01-95ef-34d0-a1cc-00a0c9543296} opo03/00050000
AudMig: Migrated {a51c424e-df5c-4efd-8020-67d126a820e0},1 property at 5
----------------------------------------------------
[
["date", "4/1/2020"],
["time", "14:15:27"],
["operator", "-"],
" PFRO Error",
["operator", ":"],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\New\\FXSWZRD.DLL"],
["punctuation", ","],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\FXSWZRD.DLL"],
["punctuation", ","],
["number", "0xc000003a"],
["date", "4/1/2020"],
["time", "14:15:27"],
["operator", "-"],
" PFRO Error",
["operator", ":"],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\New\\FXSTIFF.DLL"],
["punctuation", ","],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\FXSTIFF.DLL"],
["punctuation", ","],
["number", "0xc000003a"],
["date", "4/1/2020"],
["time", "14:15:27"],
["operator", "-"],
" PFRO Error",
["operator", ":"],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\New\\FXSRES.DLL"],
["punctuation", ","],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\FXSRES.DLL"],
["punctuation", ","],
["number", "0xc000003a"],
["date", "4/1/2020"],
["time", "14:15:27"],
["operator", "-"],
" PFRO Error",
["operator", ":"],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\New\\FXSAPI.DLL"],
["punctuation", ","],
" \\",
["operator", "?"],
["operator", "?"],
"\\",
["file-path", "C:\\Windows\\system32\\spool\\DRIVERS\\x64\\3\\FXSAPI.DLL"],
["punctuation", ","],
["number", "0xc000003a"],
["property", "AudMig:"],
" Device Ids match ",
["operator", "-"],
["operator", "{"],
["number", "5"],
["operator", "}"],
["punctuation", "."],
"\\",
["operator", "?"],
"hdaudio",
["operator", "#"],
"func_03",
["operator", "&"],
"ven_40de",
["operator", "&"],
"dev_0083",
["operator", "&"],
"subsys_50de130f",
["operator", "&"],
"rev_4003",
["operator", "#"],
["number", "1"],
["operator", "&"],
["number", "13efefe3"],
["operator", "&"],
["number", "0"],
["operator", "&"],
["number", "0004"],
["operator", "#"],
["operator", "{"],
["uuid", "6993ad03-95ef-33d0-a2cc-00a0c9322596"],
["operator", "}"],
" opo04",
["operator", "/"],
["number", "00040002"],
["operator", "{"],
["number", "2"],
["operator", "}"],
["punctuation", "."],
"\\",
["operator", "?"],
"hdaudio",
["operator", "#"],
"func_01",
["operator", "&"],
"ven_40de",
["operator", "&"],
"dev_0084",
["operator", "&"],
"subsys_10de310f",
["operator", "&"],
"rev_1004",
["operator", "#"],
["number", "2"],
["operator", "&"],
["number", "22efefe2"],
["operator", "&"],
["number", "0"],
["operator", "&"],
["number", "0004"],
["operator", "#"],
["operator", "{"],
["uuid", "6994ad04-94ef-32d0-a1cc-00a0c9181396"],
["operator", "}"],
" opo04",
["operator", "/"],
["number", "00030001"],
["property", "AudMig:"],
" Migrated ",
["operator", "{"],
["uuid", "a31c434e-df4c-1efd-8010-67d416a840e0"],
["operator", "}"],
["punctuation", ","],
["number", "2"],
" property at ",
["number", "3"],
["property", "AudMig:"],
" Migrated ",
["operator", "{"],
["uuid", "9627b1b9-13ee-5c33-b54c-7b3555c991cc"],
["operator", "}"],
["punctuation", ","],
["number", "4"],
" property at ",
["number", "7"],
["property", "AudMig:"],
" Migrated ",
["operator", "{"],
["uuid", "339abffc-30a7-47ce-af08-68c9a7d74466"],
["operator", "}"],
["punctuation", ","],
["number", "22"],
" property at ",
["number", "14"],
["property", "AudMig:"],
" Migrating role and device state from SOFTWAREMicrosoftWindowsCurrentVersionMMDevicesAudioRender",
["operator", "{"],
["uuid", "8B3B1D07-43C4-2BB5-B0ED-DCD49D5F3BCC"],
["operator", "}"],
" to SOFTWAREMicrosoftWindowsCurrentVersionMMDevicesAudioRender",
["operator", "{"],
["uuid", "C4B8172F-B522-160B-A3A9-180AC778147E"],
["operator", "}"],
["property", "AudMig:"],
" Device Ids match ",
["operator", "-"],
["operator", "{"],
["number", "5"],
["operator", "}"],
["punctuation", "."],
"\\",
["operator", "?"],
"hdaudio",
["operator", "#"],
"func_01",
["operator", "&"],
"ven_40de",
["operator", "&"],
"dev_0081",
["operator", "&"],
"subsys_20de310f",
["operator", "&"],
"rev_2004",
["operator", "#"],
["number", "2"],
["operator", "&"],
["number", "22efefe1"],
["operator", "&"],
["number", "0"],
["operator", "&"],
["number", "0005"],
["operator", "#"],
["operator", "{"],
["uuid", "6993ad02-93ef-31d0-a5cc-00a0c9354396"],
["operator", "}"],
" opo05",
["operator", "/"],
["number", "00020000"],
["operator", "{"],
["number", "2"],
["operator", "}"],
["punctuation", "."],
"\\",
["operator", "?"],
"hdaudio",
["operator", "#"],
"func_03",
["operator", "&"],
"ven_30de",
["operator", "&"],
"dev_0081",
["operator", "&"],
"subsys_30de240f",
["operator", "&"],
"rev_4002",
["operator", "#"],
["number", "2"],
["operator", "&"],
["number", "34efefe4"],
["operator", "&"],
["number", "0"],
["operator", "&"],
["number", "0003"],
["operator", "#"],
["operator", "{"],
["uuid", "6991ad01-95ef-34d0-a1cc-00a0c9543296"],
["operator", "}"],
" opo03",
["operator", "/"],
["number", "00050000"],
["property", "AudMig:"],
" Migrated ",
["operator", "{"],
["uuid", "a51c424e-df5c-4efd-8020-67d126a820e0"],
["operator", "}"],
["punctuation", ","],
["number", "1"],
" property at ",
["number", "5"]
]

View File

@ -0,0 +1,27 @@
2020-03-11
28/Jul/1995
2017-05-11
Mar 2
Apr 26
Sun Mar 2
23 SEP 2013
1/26/2021
4/1/2020
2020-03-23T04:21:20Z
----------------------------------------------------
[
["date", "2020-03-11"],
["date", "28/Jul/1995"],
["date", "2017-05-11"],
["date", "Mar 2"],
["date", "Apr 26"],
["date", "Sun Mar 2"],
["date", "23 SEP 2013"],
["date", "1/26/2021"],
["date", "4/1/2020"],
["date", "2020-03-23T"], ["time", "04:21:20Z"]
]

View File

@ -0,0 +1,9 @@
A3DCB4D229DE6FDE0DB5686DEE47145D
0c5259c3dd0a7c46f4835221645f62a0638c9b9faa02af08676e8069e1ff964b
----------------------------------------------------
[
["hash", "A3DCB4D229DE6FDE0DB5686DEE47145D"],
["hash", "0c5259c3dd0a7c46f4835221645f62a0638c9b9faa02af08676e8069e1ff964b"]
]

View File

@ -0,0 +1,57 @@
ALERT
CRIT
CRITICAL
EMERG
EMERGENCY
ERR
ERROR
FAILURE
FATAL
SEVERE
WARN
WARNING
DISPLAY
INFO
NOTICE
STATUS
DEBUG
FINE
FINER
FINEST
TRACE
VERBOSE
----------------------------------------------------
[
["level", "ALERT"],
["level", "CRIT"],
["level", "CRITICAL"],
["level", "EMERG"],
["level", "EMERGENCY"],
["level", "ERR"],
["level", "ERROR"],
["level", "FAILURE"],
["level", "FATAL"],
["level", "SEVERE"],
["level", "WARN"],
["level", "WARNING"],
["level", "DISPLAY"],
["level", "INFO"],
["level", "NOTICE"],
["level", "STATUS"],
["level", "DEBUG"],
["level", "FINE"],
["level", "FINER"],
["level", "FINEST"],
["level", "TRACE"],
["level", "VERBOSE"]
]

View File

@ -0,0 +1,41 @@
123
213.456
0000000014A9A320
0xff
0x3000
0b01010
0o777
1.2
v1.2
v1.2.3
32ms
3.70GHz
0.000000s
59.951Hz
1TB
----------------------------------------------------
[
["number", "123"],
["number", "213.456"],
["number", "0000000014A9A320"],
["number", "0xff"],
["number", "0x3000"],
["number", "0b01010"],
["number", "0o777"],
["number", "1.2"],
["number", "v1.2"],
["number", "v1.2.3"],
["number", "32ms"],
["number", "3.70GHz"],
["number", "0.000000s"],
["number", "59.951Hz"],
["number", "1TB"]
]

View File

@ -0,0 +1,34 @@
c:/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
C:\stuff\workspace\quickpoll\quickpollEJB\pom.xml
C:\WINDOWS\system32\DRIVERS\storahci.sys
/USR/SBIN/CRON
/etc/ppp/ip-down
/usr/share/doc/tama/examples/tama-nanny.exp 2>/dev/null >/dev/null
/usr/local/lib/node_modules/npm/lib/utils/spawn.js:24:14
----------------------------------------------------
[
["file-path", "c:/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg"],
["file-path", "C:\\stuff\\workspace\\quickpoll\\quickpollEJB\\pom.xml"],
["file-path", "C:\\WINDOWS\\system32\\DRIVERS\\storahci.sys"],
["file-path", "/USR/SBIN/CRON"],
["file-path", "/etc/ppp/ip-down"],
["file-path", "/usr/share/doc/tama/examples/tama-nanny.exp"],
["number", "2"],
["operator", ">"],
["file-path", "/dev/null"],
["operator", ">"],
["file-path", "/dev/null"],
["file-path", "/usr/local/lib/node_modules/npm/lib/utils/spawn.js"],
["operator", ":"],
["number", "24"],
["operator", ":"],
["number", "14"]
]

View File

@ -0,0 +1,100 @@
[1119/000645.591:ERROR:process_info.cc(329)] VirtualQueryEx: Zugriff verweigert (0x5)
Video:
Renderer: Vulkan
Resolution: 1280x720
Aspect ratio: 16:9
Frame limit: Auto
Vulkan:
Adapter: GeForce GTX 1080 Ti
Force FIFO present mode: false
Force primitive restart flag: false
Force Disable Exclusive Fullscreen Mode: false
Performance Overlay:
Enabled: false
Enable Framerate Graph: false
Enable Frametime Graph: false
Detail level: Medium
Metrics update interval (ms): 350
Font size (px): 10
Body Color (hex): "#FFE138FF"
Body Background (hex): "#002339FF"
Title Color (hex): "#F26C24FF"
Title Background (hex): "#00000000"
Shader Compilation Hint:
Position X (px): 20
Position Y (px): 690
[2020-06-11 16:12:02.642] [DISPLAY] [Main ] [main] Build type: FMB
Min/Max Sample Rate: 100, 200000
----------------------------------------------------
[
["punctuation", "["],
["number", "1119"],
["operator", "/"],
["number", "000645.591"],
["operator", ":"],
["level", "ERROR"],
["operator", ":"],
"process_info",
["punctuation", "."],
"cc",
["operator", "("],
["number", "329"],
["operator", ")"],
["punctuation", "]"],
["property", "VirtualQueryEx:"],
" Zugriff verweigert ",
["operator", "("],
["number", "0x5"],
["operator", ")"],
["property", "Video:"],
["property", "Renderer:"], " Vulkan\r\n ",
["property", "Resolution:"], " 1280x720\r\n ",
["property", "Aspect ratio:"], ["number", "16"], ["operator", ":"], ["number", "9"],
["property", "Frame limit:"], " Auto\r\n ",
["property", "Vulkan:"],
["property", "Adapter:"], " GeForce GTX ", ["number", "1080"], " Ti\r\n ",
["property", "Force FIFO present mode:"], ["boolean", "false"],
["property", "Force primitive restart flag:"], ["boolean", "false"],
["property", "Force Disable Exclusive Fullscreen Mode:"], ["boolean", "false"],
["property", "Performance Overlay:"],
["property", "Enabled:"], ["boolean", "false"],
["property", "Enable Framerate Graph:"], ["boolean", "false"],
["property", "Enable Frametime Graph:"], ["boolean", "false"],
["property", "Detail level:"], " Medium\r\n ",
["property", "Metrics update interval (ms):"], ["number", "350"],
["property", "Font size (px):"], ["number", "10"],
["property", "Body Color (hex):"], ["string", "\"#FFE138FF\""],
["property", "Body Background (hex):"], ["string", "\"#002339FF\""],
["property", "Title Color (hex):"], ["string", "\"#F26C24FF\""],
["property", "Title Background (hex):"], ["string", "\"#00000000\""],
["property", "Shader Compilation Hint:"],
["property", "Position X (px):"], ["number", "20"],
["property", "Position Y (px):"], ["number", "690"],
["punctuation", "["],
["date", "2020-06-11"],
["time", "16:12:02.642"],
["punctuation", "]"],
["punctuation", "["],
["level", "DISPLAY"],
["punctuation", "]"],
["punctuation", "["],
"Main ",
["punctuation", "]"],
["punctuation", "["],
"main",
["punctuation", "]"],
["property", "Build type:"],
" FMB\r\n\r\n",
["property", "Min/Max Sample Rate:"],
["number", "100"],
["punctuation", ","],
["number", "200000"]
]

View File

@ -0,0 +1,50 @@
-----
sysadm.bda.nasa.gov - - [28/Jul/1995:13:30:20 -0400] "GET /elv/endba11.gif HTTP/1.0" 200 306
2017-05-11 15:05:28.889 INFO 30284 --- [ost-staItStop-1] o.s.web.context.ContextLoadeI : Root WebApplicationContext: initialization completed in 911 ms
----------------------------------------------------
[
["separator", "-----"],
["domain", "sysadm.bda.nasa.gov"],
["separator", "- - "],
["punctuation", "["],
["date", "28/Jul/1995"],
["operator", ":"],
["time", "13:30:20 -0400"],
["punctuation", "]"],
["string", "\"GET /elv/endba11.gif HTTP/1.0\""],
["number", "200"],
["number", "306"],
["date", "2017-05-11"],
["time", "15:05:28.889"],
["level", "INFO"],
["number", "30284"],
["separator", "---"],
["punctuation", "["],
"ost",
["operator", "-"],
"staItStop",
["operator", "-"],
["number", "1"],
["punctuation", "]"],
" o",
["punctuation", "."],
"s",
["punctuation", "."],
"web",
["punctuation", "."],
"context",
["punctuation", "."],
"ContextLoadeI ",
["operator", ":"],
" Root WebApplicationContext",
["operator", ":"],
" initialization completed in ",
["number", "911"],
" ms"
]

View File

@ -0,0 +1,39 @@
"GET /history/apollo/images/apollo-log01.gif HTTP/1.0"
"{[/],methods=[GET]}"
TLSv1.2 ECDHE-RSA-AES128-GCM-SHA256 2.2.2.2 "Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1"
13 error argv "/usr/local/bin/node" "/usr/local/bin/npm" "start"
This isn't a string but this is: 'string'
----------------------------------------------------
[
["string", "\"GET /history/apollo/images/apollo-log01.gif HTTP/1.0\""],
["string", "\"{[/],methods=[GET]}\""],
"\r\n\r\nTLSv1",
["punctuation", "."],
"2 ECDHE",
["operator", "-"],
"RSA",
["operator", "-"],
"AES128",
["operator", "-"],
"GCM",
["operator", "-"],
"SHA256 ",
["ip-address", "2.2.2.2"],
["string", "\"Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13B143 Safari/601.1\""],
["number", "13"],
" error argv ",
["string", "\"/usr/local/bin/node\""],
["string", "\"/usr/local/bin/npm\""],
["string", "\"start\""],
"\r\n\r\nThis isn't a string but this is",
["operator", ":"],
["string", "'string'"]
]

View File

@ -0,0 +1,25 @@
9:52:58
15:05:28.889
19:38:12,729
00:29:13:038
13:30:12
13:30:19 -0400
13:30:15 +9400
2020-03-23T04:21:20Z
----------------------------------------------------
[
["time", "9:52:58"],
["time", "15:05:28.889"],
["time", "19:38:12,729"],
["time", "00:29:13:038"],
["time", "13:30:12"],
["time", "13:30:19 -0400"],
["time", "13:30:15 +9400"],
["date", "2020-03-23T"], ["time", "04:21:20Z"]
]

View File

@ -0,0 +1,30 @@
http://66.140.25.157:802/
file://c:/repository
Foo <https://foo.bar/contact.html>
- Mapping virtual host: http://download.spinetix.com/spxjslibs
Failed to transfer file: http://repo.xxxx.com/foo/bar.pom. Return code is
----------------------------------------------------
[
["url", "http://66.140.25.157:802/"],
["url", "file://c:/repository"],
"\r\n\r\nFoo ",
["operator", "<"],
["url", "https://foo.bar/contact.html"],
["operator", ">"],
["operator", "-"],
" Mapping virtual host",
["operator", ":"],
["url", "http://download.spinetix.com/spxjslibs"],
["property", "Failed to transfer file:"],
["url", "http://repo.xxxx.com/foo/bar.pom"],
["punctuation", "."],
" Return code is"
]

View File

@ -0,0 +1,9 @@
86695F12-340E-4F04-9FD3-9253DD327460
F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB
----------------------------------------------------
[
["uuid", "86695F12-340E-4F04-9FD3-9253DD327460"],
["uuid", "F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB"]
]