From 1f8c74793a335c56a91d12aba4cda282d7c47ea6 Mon Sep 17 00:00:00 2001 From: Kurt Thiemann Date: Fri, 5 Apr 2024 12:12:45 +0200 Subject: [PATCH 1/4] detect Mod File needs language provider problem --- lang/en.json | 5 +- src/Analyser/ForgeAnalyser.php | 4 +- .../Forge/LanguageProviderVersionProblem.php | 56 + ...forge-language-provider-version-above.json | 8182 +++++++++++++++++ .../forge-language-provider-version-above.log | 761 ++ ...rge-language-provider-version-between.json | 8182 +++++++++++++++++ ...orge-language-provider-version-between.log | 761 ++ test/tests/Logs/AutoLogsTest.php | 20 + 8 files changed, 17968 insertions(+), 3 deletions(-) create mode 100644 src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php create mode 100644 test/data/Vanilla/Forge/forge-language-provider-version-above.json create mode 100644 test/data/Vanilla/Forge/forge-language-provider-version-above.log create mode 100644 test/data/Vanilla/Forge/forge-language-provider-version-between.json create mode 100644 test/data/Vanilla/Forge/forge-language-provider-version-between.log diff --git a/lang/en.json b/lang/en.json index cbc05b14..e3b87359 100644 --- a/lang/en.json +++ b/lang/en.json @@ -83,5 +83,6 @@ "type-proxy": "Proxy Log", "type-content": "Content Log", "type-crash-report": "Crash Report", - "type-unknown": "Unknown Log" -} \ No newline at end of file + "type-unknown": "Unknown Log", + "forge-language-provider-version-problem": "The mod '{{mod-file}}' requires {{language-provider}} {{required-version}}, but {{found-version}} is installed." +} diff --git a/src/Analyser/ForgeAnalyser.php b/src/Analyser/ForgeAnalyser.php index 2822f41b..9b05ddd8 100644 --- a/src/Analyser/ForgeAnalyser.php +++ b/src/Analyser/ForgeAnalyser.php @@ -7,6 +7,7 @@ use Aternos\Codex\Minecraft\Analysis\Information\Forge\ForgeVersionInformation; use Aternos\Codex\Minecraft\Analysis\Information\Vanilla\VanillaVersionInformation; use Aternos\Codex\Minecraft\Analysis\Problem\Forge\FmlConfirmProblem; +use Aternos\Codex\Minecraft\Analysis\Problem\Forge\LanguageProviderVersionProblem; use Aternos\Codex\Minecraft\Analysis\Problem\Forge\ModDependencyProblem; use Aternos\Codex\Minecraft\Analysis\Problem\Forge\ModDuplicateProblem; use Aternos\Codex\Minecraft\Analysis\Problem\Forge\ModExceptionProblem; @@ -41,5 +42,6 @@ public function __construct() $this->addPossibleInsightClass(ModWrongMinecraftVersionProblem::class); $this->addPossibleInsightClass(PTRLibDependencyProblem::class); $this->addPossibleInsightClass(MultipleModulesExportProblem::class); + $this->addPossibleInsightClass(LanguageProviderVersionProblem::class); } -} \ No newline at end of file +} diff --git a/src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php b/src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php new file mode 100644 index 00000000..bf581c4a --- /dev/null +++ b/src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php @@ -0,0 +1,56 @@ +languageProvider; + if ($provider === "javafml") { + $provider = "Forge"; + } + return Translator::getInstance()->getTranslation("forge-language-provider-version-problem", + [ + "mod-file" => $this->getModName(), + "language-provider" => $provider, + "required-version" => $this->requiredVersion, + "found-version" => $this->foundVersion + ]); + } + + /** + * @inheritDoc + */ + public static function getPatterns(): array + { + return [ + "/Mod File ([^\/\n]+) needs language provider ([\w-]+):(.*?) to load[\n\s§\da-f]*We have found (\d+)/" + ]; + } + + /** + * @inheritDoc + */ + public function setMatches(array $matches, mixed $patternKey): void + { + $this->modName = $matches[1]; + $this->languageProvider = $matches[2]; + $this->requiredVersion = $matches[3]; + $this->foundVersion = $matches[4]; + + $this->addSolution((new ModRemoveSolution())->setModName($this->getModName())); + $this->addSolution((new ForgeInstallDifferentVersionSolution())); + } +} diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-above.json b/test/data/Vanilla/Forge/forge-language-provider-version-above.json new file mode 100644 index 00000000..aa4d5848 --- /dev/null +++ b/test/data/Vanilla/Forge/forge-language-provider-version-above.json @@ -0,0 +1,8182 @@ +{ + "id": "forge\/server", + "name": "Forge", + "type": "Server Log", + "version": "1.20.1", + "title": "Forge 1.20.1 Server Log", + "entries": [ + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:31.920] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 1, + "content": "[05Apr2024 11:10:31.920] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui]" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:31.923] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 2, + "content": "[05Apr2024 11:10:31.923] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-88-generic" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.942] [main\/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 3, + "content": "[05Apr2024 11:10:31.942] [main\/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.950] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 4, + "content": "[05Apr2024 11:10:31.950] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Found naming services : [srgtomcp]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.964] [main\/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 5, + "content": "[05Apr2024 11:10:31.964] [main\/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler\/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.973] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 6, + "content": "[05Apr2024 11:10:31.973] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Discovering transformation services" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 7, + "content": "[05Apr2024 11:10:31.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path GAMEDIR is \/server" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 8, + "content": "[05Apr2024 11:10:31.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path MODSDIR is \/server\/mods" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 9, + "content": "[05Apr2024 11:10:31.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path CONFIGDIR is \/server\/config" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:31.978] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 10, + "content": "[05Apr2024 11:10:31.978] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path FMLCONFIG is \/server\/config\/fml.toml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.008] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 11, + "content": "[05Apr2024 11:10:32.008] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Found additional transformation services from discovery services:" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:32.013] [main\/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler\/]:", + "lines": [ + { + "number": 12, + "content": "[05Apr2024 11:10:32.013] [main\/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler\/]: ImmediateWindowProvider not loading because launch target is forgeserver" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.018] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 13, + "content": "[05Apr2024 11:10:32.018] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Found transformer services : [mixin,fml]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.018] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 14, + "content": "[05Apr2024 11:10:32.018] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services loading" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.018] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 15, + "content": "[05Apr2024 11:10:32.018] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loading service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.019] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 16, + "content": "[05Apr2024 11:10:32.019] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loaded service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.019] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 17, + "content": "[05Apr2024 11:10:32.019] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loading service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.019] [main\/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion\/CORE]:", + "lines": [ + { + "number": 18, + "content": "[05Apr2024 11:10:32.019] [main\/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion\/CORE]: Found FMLLauncher version 1.0" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.019] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 19, + "content": "[05Apr2024 11:10:32.019] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML 1.0 loading" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.019] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 20, + "content": "[05Apr2024 11:10:32.019] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 21, + "content": "[05Apr2024 11:10:32.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 22, + "content": "[05Apr2024 11:10:32.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 23, + "content": "[05Apr2024 11:10:32.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Found Runtime Dist Cleaner" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.021] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 24, + "content": "[05Apr2024 11:10:32.021] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.021] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 25, + "content": "[05Apr2024 11:10:32.021] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.021] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 26, + "content": "[05Apr2024 11:10:32.021] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Found ForgeSPI package specification 5" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.022] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 27, + "content": "[05Apr2024 11:10:32.022] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loaded service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.022] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 28, + "content": "[05Apr2024 11:10:32.022] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Configuring option handling for services" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.026] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 29, + "content": "[05Apr2024 11:10:32.026] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services initializing" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.027] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 30, + "content": "[05Apr2024 11:10:32.027] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.036] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 31, + "content": "[05Apr2024 11:10:32.036] [main\/DEBUG] [mixin\/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@5cdec700" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:32.047] [main\/INFO] [mixin\/]:", + "lines": [ + { + "number": 32, + "content": "[05Apr2024 11:10:32.047] [main\/INFO] [mixin\/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:\/server\/libraries\/org\/spongepowered\/mixin\/0.8.5\/mixin-0.8.5.jar%2365!\/ Service=ModLauncher Env=SERVER" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.049] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 33, + "content": "[05Apr2024 11:10:32.049] [main\/DEBUG] [mixin\/]: Initialising Mixin Platform Manager" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 34, + "content": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 35, + "content": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 36, + "content": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 37, + "content": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 38, + "content": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 39, + "content": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 40, + "content": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.052] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 41, + "content": "[05Apr2024 11:10:32.052] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Setting up basic FML game directories" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 42, + "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path GAMEDIR is \/server" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 43, + "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path MODSDIR is \/server\/mods" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 44, + "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path CONFIGDIR is \/server\/config" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 45, + "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path FMLCONFIG is \/server\/config\/fml.toml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 46, + "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading configuration" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 47, + "content": "[05Apr2024 11:10:32.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing ModFile" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.056] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 48, + "content": "[05Apr2024 11:10:32.056] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing launch handler" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 49, + "content": "[05Apr2024 11:10:32.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Using forgeserver as launch service" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.066] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 50, + "content": "[05Apr2024 11:10:32.066] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 51, + "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 52, + "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Current naming domain is 'srg'" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 53, + "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Identified name mapping providers {}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 54, + "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services begin scanning" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 55, + "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 56, + "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 57, + "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 58, + "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Initiating mod scan" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.076] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]:", + "lines": [ + { + "number": 59, + "content": "[05Apr2024 11:10:32.076] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]: Found mod coordinates from lists: []" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", + "lines": [ + { + "number": 60, + "content": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", + "lines": [ + { + "number": 61, + "content": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Dependency Locators : (JarInJar:null)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.082] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 62, + "content": "[05Apr2024 11:10:32.082] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.109] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 63, + "content": "[05Apr2024 11:10:32.109] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.199] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 64, + "content": "[05Apr2024 11:10:32.199] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.200] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 65, + "content": "[05Apr2024 11:10:32.200] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:10:32.200] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 66, + "content": "[05Apr2024 11:10:32.200] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.201] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 67, + "content": "[05Apr2024 11:10:32.201] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:10:32.201] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 68, + "content": "[05Apr2024 11:10:32.201] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.202] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 69, + "content": "[05Apr2024 11:10:32.202] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:10:32.202] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 70, + "content": "[05Apr2024 11:10:32.202] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.203] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 71, + "content": "[05Apr2024 11:10:32.203] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:10:32.203] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 72, + "content": "[05Apr2024 11:10:32.203] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.227] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 73, + "content": "[05Apr2024 11:10:32.227] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.228] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 74, + "content": "[05Apr2024 11:10:32.228] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 75, + "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 76, + "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 77, + "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 78, + "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 79, + "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 80, + "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 81, + "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:32.254] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]:", + "lines": [ + { + "number": 82, + "content": "[05Apr2024 11:10:32.254] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]: No dependencies to load found. Skipping!" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.256] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 83, + "content": "[05Apr2024 11:10:32.256] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.257] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 84, + "content": "[05Apr2024 11:10:32.257] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraft\/server\/1.20.1-20230612.114412\/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.258] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 85, + "content": "[05Apr2024 11:10:32.258] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 86, + "content": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 87, + "content": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 88, + "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_method with Javascript path coremods\/field_to_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 89, + "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_instanceof with Javascript path coremods\/field_to_instanceof.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 90, + "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod add_bouncer_method with Javascript path coremods\/add_bouncer_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 91, + "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod method_redirector with Javascript path coremods\/method_redirector.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 92, + "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 93, + "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_instanceof.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 94, + "content": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/add_bouncer_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 95, + "content": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/method_redirector.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 96, + "content": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 97, + "content": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 98, + "content": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/mods\/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[48,)]]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.284] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 99, + "content": "[05Apr2024 11:10:32.284] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 100, + "content": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found 3 language providers" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 101, + "content": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider minecraft, version 1.0" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 102, + "content": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider lowcodefml, version 47" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 103, + "content": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider javafml, version 47" + } + ] + }, + { + "level": 3, + "time": null, + "prefix": "[05Apr2024 11:10:32.294] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]:", + "lines": [ + { + "number": 104, + "content": "[05Apr2024 11:10:32.294] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]: Missing language javafml version [48,) wanted by ironchest-1.20.2-14.5.7.jar, found 47" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", + "lines": [ + { + "number": 105, + "content": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Configured system mods: [minecraft, forge]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", + "lines": [ + { + "number": 106, + "content": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: minecraft" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", + "lines": [ + { + "number": 107, + "content": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: forge" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", + "lines": [ + { + "number": 108, + "content": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", + "lines": [ + { + "number": 109, + "content": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 110, + "content": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services loading transformers" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 111, + "content": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 112, + "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 113, + "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 114, + "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading coremod transformers" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 115, + "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.773] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 116, + "content": "[05Apr2024 11:10:32.773] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.774] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 117, + "content": "[05Apr2024 11:10:32.774] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_instanceof.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.820] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 118, + "content": "[05Apr2024 11:10:32.820] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.821] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 119, + "content": "[05Apr2024 11:10:32.821] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/add_bouncer_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 120, + "content": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 121, + "content": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/method_redirector.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.923] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 122, + "content": "[05Apr2024 11:10:32.923] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.930] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 123, + "content": "[05Apr2024 11:10:32.930] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet\/minecraft\/world\/level\/biome\/Biome;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 124, + "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/Structure;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 125, + "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/effect\/MobEffectInstance;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 126, + "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1de0641b to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/LiquidBlock;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 127, + "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@68b734a8 to Target : CLASS {Lnet\/minecraft\/world\/item\/BucketItem;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 128, + "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1a464fa3 to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/StairBlock;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 129, + "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4215e133 to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/FlowerPotBlock;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 130, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5ccb85d6 to Target : CLASS {Lnet\/minecraft\/world\/item\/ItemStack;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 131, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@d88f893 to Target : CLASS {Lnet\/minecraft\/network\/play\/client\/CClientSettingsPacket;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 132, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/frog\/Tadpole;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 133, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 134, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/ZombieVillager;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 135, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 136, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/CatSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 137, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PatrolSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 138, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Spider;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 139, + "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/ai\/village\/VillageSiege;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 140, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/server\/commands\/RaidCommand;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 141, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PhantomSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 142, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/server\/commands\/SummonCommand;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 143, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Strider;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 144, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/NaturalSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 145, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Zombie;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 146, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/templatesystem\/StructureTemplate;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 147, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/Villager;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 148, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/raid\/Raid;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 149, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/EntityType;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 150, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 151, + "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 152, + "content": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 153, + "content": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 154, + "content": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.301] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 155, + "content": "[05Apr2024 11:10:33.301] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 156, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 157, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 158, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 159, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 160, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 161, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 162, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 163, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 164, + "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 165, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 166, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 167, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 168, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 169, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: inject() running with 3 agents" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 170, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 171, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 172, + "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:33.303] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 173, + "content": "[05Apr2024 11:10:33.303] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.323] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 174, + "content": "[05Apr2024 11:10:33.323] [main\/DEBUG] [mixin\/]: Error cleaning class output directory: .mixin.out" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.324] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 175, + "content": "[05Apr2024 11:10:33.324] [main\/DEBUG] [mixin\/]: Preparing mixins for MixinEnvironment[DEFAULT]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.385] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]:", + "lines": [ + { + "number": 176, + "content": "[05Apr2024 11:10:33.385] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]: Using SLF4J as the default logging framework" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", + "lines": [ + { + "number": 177, + "content": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.level: simple" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", + "lines": [ + { + "number": 178, + "content": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.targetRecords: 4" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 179, + "content": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 180, + "content": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.547] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 181, + "content": "[05Apr2024 11:10:33.547] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.555] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 182, + "content": "[05Apr2024 11:10:33.555] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.558] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 183, + "content": "[05Apr2024 11:10:33.558] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/stat" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 184, + "content": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 185, + "content": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 186, + "content": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 187, + "content": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 188, + "content": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 189, + "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 190, + "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 191, + "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 192, + "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 193, + "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 194, + "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 195, + "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 196, + "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 197, + "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 198, + "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 199, + "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 200, + "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 201, + "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 202, + "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 203, + "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 204, + "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 205, + "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 206, + "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 207, + "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 208, + "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 209, + "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 210, + "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 211, + "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 212, + "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 213, + "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 214, + "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 215, + "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 216, + "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 217, + "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 218, + "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 219, + "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 220, + "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 221, + "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 222, + "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 223, + "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 224, + "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 225, + "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 226, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 227, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 228, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 229, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 230, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 231, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 232, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 233, + "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 234, + "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 235, + "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 236, + "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 237, + "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 238, + "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 239, + "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 240, + "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 241, + "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 242, + "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 243, + "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 244, + "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 245, + "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 246, + "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 247, + "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 248, + "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 249, + "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 250, + "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 251, + "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 252, + "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 253, + "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 254, + "content": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 255, + "content": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 256, + "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 257, + "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 258, + "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 259, + "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 260, + "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 261, + "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 262, + "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 263, + "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 264, + "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 265, + "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 266, + "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 267, + "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 268, + "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 269, + "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 270, + "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 271, + "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 272, + "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 273, + "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 274, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 275, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 276, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 277, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 278, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 279, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 280, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 281, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 282, + "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 283, + "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 284, + "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 285, + "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 286, + "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 287, + "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 288, + "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 289, + "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 290, + "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 291, + "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 292, + "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 293, + "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 294, + "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 295, + "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 296, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 297, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 298, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 299, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 300, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 301, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 302, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 303, + "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 304, + "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 305, + "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 306, + "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 307, + "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 308, + "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 309, + "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 310, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 311, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 312, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 313, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 314, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 315, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 316, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 317, + "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 318, + "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 319, + "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 320, + "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 321, + "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 322, + "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 323, + "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 324, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 325, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 326, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 327, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 328, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 329, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 330, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 331, + "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 332, + "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 333, + "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 334, + "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 335, + "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 336, + "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 337, + "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 338, + "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 339, + "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 340, + "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 341, + "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 342, + "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 343, + "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 344, + "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 345, + "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 346, + "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 347, + "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 348, + "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 349, + "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 350, + "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 351, + "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 352, + "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 353, + "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 354, + "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 355, + "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 356, + "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 357, + "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 358, + "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 359, + "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 360, + "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 361, + "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 362, + "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 363, + "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 364, + "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 365, + "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 366, + "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 367, + "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 368, + "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 369, + "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 370, + "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 371, + "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 372, + "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 373, + "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 374, + "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 375, + "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 376, + "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 377, + "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 378, + "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 379, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 380, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 381, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 382, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 383, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 384, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 385, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 386, + "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 387, + "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 388, + "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 389, + "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 390, + "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 391, + "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 392, + "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 393, + "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 394, + "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 395, + "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 396, + "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 397, + "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 398, + "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 399, + "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 400, + "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 401, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 402, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 403, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 404, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 405, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 406, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 407, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 408, + "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 409, + "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 410, + "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 411, + "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 412, + "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 413, + "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 414, + "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 415, + "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 416, + "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 417, + "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 418, + "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 419, + "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 420, + "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 421, + "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 422, + "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.605] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 423, + "content": "[05Apr2024 11:10:33.605] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.607] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 424, + "content": "[05Apr2024 11:10:33.607] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.634] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 425, + "content": "[05Apr2024 11:10:33.634] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.635] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 426, + "content": "[05Apr2024 11:10:33.635] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.636] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 427, + "content": "[05Apr2024 11:10:33.636] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.659] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 428, + "content": "[05Apr2024 11:10:33.659] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.660] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 429, + "content": "[05Apr2024 11:10:33.660] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:33.901] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 430, + "content": "[05Apr2024 11:10:33.901] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/EntityType" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:34.315] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 431, + "content": "[05Apr2024 11:10:34.315] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/LiquidBlock" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:34.350] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 432, + "content": "[05Apr2024 11:10:34.350] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/StairBlock" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:34.411] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 433, + "content": "[05Apr2024 11:10:34.411] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/FlowerPotBlock" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:35.179] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 434, + "content": "[05Apr2024 11:10:35.179] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/ItemStack" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:35.821] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 435, + "content": "[05Apr2024 11:10:35.821] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/frog\/Tadpole" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:35.861] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 436, + "content": "[05Apr2024 11:10:35.861] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/BucketItem" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.542] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 437, + "content": "[05Apr2024 11:10:36.542] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Spider" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.588] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 438, + "content": "[05Apr2024 11:10:36.588] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Zombie" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.644] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 439, + "content": "[05Apr2024 11:10:36.644] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/ZombieVillager" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.706] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 440, + "content": "[05Apr2024 11:10:36.706] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.797] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 441, + "content": "[05Apr2024 11:10:36.797] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.813] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 442, + "content": "[05Apr2024 11:10:36.813] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Strider" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.899] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 443, + "content": "[05Apr2024 11:10:36.899] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/npc\/Villager" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:36.992] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 444, + "content": "[05Apr2024 11:10:36.992] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/effect\/MobEffectInstance" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.361] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 445, + "content": "[05Apr2024 11:10:37.361] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/Structure" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.393] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 446, + "content": "[05Apr2024 11:10:37.393] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.405] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 447, + "content": "[05Apr2024 11:10:37.405] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.417] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 448, + "content": "[05Apr2024 11:10:37.417] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.434] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 449, + "content": "[05Apr2024 11:10:37.434] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.515] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 450, + "content": "[05Apr2024 11:10:37.515] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/biome\/Biome" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.815] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", + "lines": [ + { + "number": 451, + "content": "[05Apr2024 11:10:37.815] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.829] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]:", + "lines": [ + { + "number": 452, + "content": "[05Apr2024 11:10:37.829] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]: Using 3 threads for parallel mod-loading" + } + ] + }, + { + "level": 2, + "time": null, + "prefix": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", + "lines": [ + { + "number": 453, + "content": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" + }, + { + "number": 454, + "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load" + }, + { + "number": 455, + "content": "\u00a77We have found 47" + }, + { + "number": 456, + "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 457, + "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" + }, + { + "number": 458, + "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" + }, + { + "number": 459, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 460, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 461, + "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" + }, + { + "number": 462, + "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" + }, + { + "number": 463, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 464, + "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" + }, + { + "number": 465, + "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" + }, + { + "number": 466, + "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" + }, + { + "number": 467, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 468, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 469, + "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" + }, + { + "number": 470, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 471, + "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" + }, + { + "number": 472, + "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 473, + "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 474, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, + { + "number": 475, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, + { + "number": 476, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, + { + "number": 477, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, + { + "number": 478, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, + { + "number": 479, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, + { + "number": 480, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 481, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 482, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 483, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 484, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 485, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 486, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 487, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 488, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 489, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 490, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.856] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", + "lines": [ + { + "number": 491, + "content": "[05Apr2024 11:10:37.856] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 492, + "content": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 493, + "content": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 494, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 495, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 496, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 497, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 498, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 499, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 500, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 501, + "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 502, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 503, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 504, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 505, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 506, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 507, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 508, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 509, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 510, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 511, + "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 512, + "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 513, + "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 514, + "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 515, + "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 516, + "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 517, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 518, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 519, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 520, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 521, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 522, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 523, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 524, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 525, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 526, + "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 527, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 528, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 529, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 530, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 531, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 532, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 533, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 534, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 535, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 536, + "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 537, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 538, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 539, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 540, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 541, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 542, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 543, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 544, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 545, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 546, + "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 547, + "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 548, + "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 549, + "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 550, + "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 551, + "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 552, + "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 553, + "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 554, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 555, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 556, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 557, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 558, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 559, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 560, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 561, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 562, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 563, + "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 564, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 565, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 566, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 567, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 568, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 569, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 570, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 571, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 572, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 573, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 574, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 575, + "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 576, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 577, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 578, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 579, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 580, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 581, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 582, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 583, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 584, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 585, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 586, + "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 587, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 588, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 589, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 590, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 591, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 592, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 593, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 594, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 595, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 596, + "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 597, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 598, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 599, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 600, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 601, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 602, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 603, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 604, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 605, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 606, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 607, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 608, + "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 609, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 610, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 611, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 612, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 613, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 614, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 615, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 616, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 617, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 618, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 619, + "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 620, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 621, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 622, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 623, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 624, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 625, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 626, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 627, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 628, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 629, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 630, + "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 631, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 632, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 633, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 634, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 635, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 636, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 637, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 638, + "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 639, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 640, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 641, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 642, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 643, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 644, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 645, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 646, + "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 647, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 648, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 649, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 650, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 651, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 652, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 653, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 654, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 655, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 656, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 657, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 658, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 659, + "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 660, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 661, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 662, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 663, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 664, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 665, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 666, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 667, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 668, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 669, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 670, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 671, + "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 672, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 673, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 674, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 675, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 676, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 677, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 678, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 679, + "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 680, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 681, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 682, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 683, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 684, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 685, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 686, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 687, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 688, + "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 689, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 690, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 691, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 692, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 693, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 694, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 695, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 696, + "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 697, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 698, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 699, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 700, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 701, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 702, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 703, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 704, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 705, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 706, + "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 707, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 708, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 709, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 710, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 711, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 712, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 713, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 714, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 715, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 716, + "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 717, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 718, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 719, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 720, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 721, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 722, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 723, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 724, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 725, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 726, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 727, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 728, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 729, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 730, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 731, + "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.885] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 732, + "content": "[05Apr2024 11:10:37.885] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.916] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 733, + "content": "[05Apr2024 11:10:37.916] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 734, + "content": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 735, + "content": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.921] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 736, + "content": "[05Apr2024 11:10:37.921] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:10:37.922] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 737, + "content": "[05Apr2024 11:10:37.922] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 2, + "time": null, + "prefix": "[05Apr2024 11:10:37.932] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]:", + "lines": [ + { + "number": 738, + "content": "[05Apr2024 11:10:37.932] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]: Crash report saved to .\/crash-reports\/crash-2024-04-05_11.10.37-fml.txt" + } + ] + }, + { + "level": 3, + "time": null, + "prefix": "[05Apr2024 11:10:37.934] [main\/ERROR] [net.minecraft.server.Main\/FATAL]:", + "lines": [ + { + "number": 739, + "content": "[05Apr2024 11:10:37.934] [main\/ERROR] [net.minecraft.server.Main\/FATAL]: Failed to start the minecraft server" + }, + { + "number": 740, + "content": "net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [" + }, + { + "number": 741, + "content": "\tMod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load" + }, + { + "number": 742, + "content": "\u00a77We have found 47" + }, + { + "number": 743, + "content": "]" + }, + { + "number": 744, + "content": "\tat net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:149) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 745, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, + { + "number": 746, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, + { + "number": 747, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, + { + "number": 748, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, + { + "number": 749, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, + { + "number": 750, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, + { + "number": 751, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 752, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 753, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 754, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 755, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 756, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 757, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 758, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 759, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 760, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 761, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" + }, + { + "number": 762, + "content": "" + } + ] + } + ], + "analysis": { + "problems": [ + { + "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires Forge 48 or above, but 47 is installed.", + "counter": 2, + "entry": { + "level": 2, + "time": null, + "prefix": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", + "lines": [ + { + "number": 453, + "content": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" + }, + { + "number": 454, + "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load" + }, + { + "number": 455, + "content": "\u00a77We have found 47" + }, + { + "number": 456, + "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 457, + "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" + }, + { + "number": 458, + "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" + }, + { + "number": 459, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 460, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 461, + "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" + }, + { + "number": 462, + "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" + }, + { + "number": 463, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 464, + "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" + }, + { + "number": 465, + "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" + }, + { + "number": 466, + "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" + }, + { + "number": 467, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 468, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 469, + "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" + }, + { + "number": 470, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 471, + "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" + }, + { + "number": 472, + "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 473, + "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 474, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, + { + "number": 475, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, + { + "number": 476, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, + { + "number": 477, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, + { + "number": 478, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, + { + "number": 479, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, + { + "number": 480, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 481, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 482, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 483, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 484, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 485, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 486, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 487, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 488, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 489, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 490, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" + } + ] + }, + "solutions": [ + { + "message": "Remove the mod 'ironchest-1.20.2-14.5.7.jar'." + }, + { + "message": "Install a different Forge version." + } + ] + } + ], + "information": [ + { + "message": "Minecraft version: 1.20.1", + "counter": 1, + "entry": { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:31.920] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 1, + "content": "[05Apr2024 11:10:31.920] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui]" + } + ] + }, + "label": "Minecraft version", + "value": "1.20.1" + }, + { + "message": "Forge version: 47.2.0", + "counter": 1, + "entry": { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:10:31.920] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 1, + "content": "[05Apr2024 11:10:31.920] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui]" + } + ] + }, + "label": "Forge version", + "value": "47.2.0" + } + ] + } +} \ No newline at end of file diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-above.log b/test/data/Vanilla/Forge/forge-language-provider-version-above.log new file mode 100644 index 00000000..2e961397 --- /dev/null +++ b/test/data/Vanilla/Forge/forge-language-provider-version-above.log @@ -0,0 +1,761 @@ +[05Apr2024 11:10:31.920] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] +[05Apr2024 11:10:31.923] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-88-generic +[05Apr2024 11:10:31.942] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] +[05Apr2024 11:10:31.950] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] +[05Apr2024 11:10:31.964] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] +[05Apr2024 11:10:31.973] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services +[05Apr2024 11:10:31.977] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /server +[05Apr2024 11:10:31.977] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /server/mods +[05Apr2024 11:10:31.977] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /server/config +[05Apr2024 11:10:31.978] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /server/config/fml.toml +[05Apr2024 11:10:32.008] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: +[05Apr2024 11:10:32.013] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver +[05Apr2024 11:10:32.018] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] +[05Apr2024 11:10:32.018] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading +[05Apr2024 11:10:32.018] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin +[05Apr2024 11:10:32.019] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin +[05Apr2024 11:10:32.019] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml +[05Apr2024 11:10:32.019] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 +[05Apr2024 11:10:32.019] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading +[05Apr2024 11:10:32.019] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 +[05Apr2024 11:10:32.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 +[05Apr2024 11:10:32.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b +[05Apr2024 11:10:32.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner +[05Apr2024 11:10:32.021] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922 +[05Apr2024 11:10:32.021] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 +[05Apr2024 11:10:32.021] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 +[05Apr2024 11:10:32.022] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml +[05Apr2024 11:10:32.022] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services +[05Apr2024 11:10:32.026] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing +[05Apr2024 11:10:32.027] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin +[05Apr2024 11:10:32.036] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@5cdec700 +[05Apr2024 11:10:32.047] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER +[05Apr2024 11:10:32.049] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager +[05Apr2024 11:10:32.050] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:10:32.050] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:10:32.050] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:10:32.051] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:10:32.051] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:10:32.052] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin +[05Apr2024 11:10:32.052] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml +[05Apr2024 11:10:32.052] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories +[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /server +[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /server/mods +[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /server/config +[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /server/config/fml.toml +[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration +[05Apr2024 11:10:32.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile +[05Apr2024 11:10:32.056] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler +[05Apr2024 11:10:32.057] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service +[05Apr2024 11:10:32.066] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] +[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml +[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' +[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} +[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning +[05Apr2024 11:10:32.068] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin +[05Apr2024 11:10:32.068] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin +[05Apr2024 11:10:32.068] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml +[05Apr2024 11:10:32.068] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan +[05Apr2024 11:10:32.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] +[05Apr2024 11:10:32.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) +[05Apr2024 11:10:32.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) +[05Apr2024 11:10:32.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar +[05Apr2024 11:10:32.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} +[05Apr2024 11:10:32.199] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} +[05Apr2024 11:10:32.200] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar +[05Apr2024 11:10:32.200] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:10:32.201] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar +[05Apr2024 11:10:32.201] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:10:32.202] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar +[05Apr2024 11:10:32.202] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:10:32.203] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar +[05Apr2024 11:10:32.203] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:10:32.227] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar +[05Apr2024 11:10:32.228] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} +[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information. +[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information. +[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information. +[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:10:32.254] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! +[05Apr2024 11:10:32.256] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} +[05Apr2024 11:10:32.257] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraft/server/1.20.1-20230612.114412/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] +[05Apr2024 11:10:32.258] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar +[05Apr2024 11:10:32.259] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} +[05Apr2024 11:10:32.259] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] +[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js +[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js +[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js +[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js +[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js +[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js +[05Apr2024 11:10:32.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js +[05Apr2024 11:10:32.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js +[05Apr2024 11:10:32.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar +[05Apr2024 11:10:32.284] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} +[05Apr2024 11:10:32.284] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/mods/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[48,)]] +[05Apr2024 11:10:32.284] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml +[05Apr2024 11:10:32.292] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers +[05Apr2024 11:10:32.292] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 +[05Apr2024 11:10:32.293] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 +[05Apr2024 11:10:32.293] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 +[05Apr2024 11:10:32.294] [main/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider/LOADING]: Missing language javafml version [48,) wanted by ironchest-1.20.2-14.5.7.jar, found 47 +[05Apr2024 11:10:32.297] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] +[05Apr2024 11:10:32.297] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft +[05Apr2024 11:10:32.297] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge +[05Apr2024 11:10:32.298] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional) +[05Apr2024 11:10:32.298] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) +[05Apr2024 11:10:32.581] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers +[05Apr2024 11:10:32.581] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin +[05Apr2024 11:10:32.582] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin +[05Apr2024 11:10:32.582] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml +[05Apr2024 11:10:32.582] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers +[05Apr2024 11:10:32.582] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js +[05Apr2024 11:10:32.773] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:10:32.774] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js +[05Apr2024 11:10:32.820] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:10:32.821] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js +[05Apr2024 11:10:32.874] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:10:32.874] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js +[05Apr2024 11:10:32.923] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:10:32.930] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} +[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} +[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} +[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1de0641b to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} +[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@68b734a8 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} +[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1a464fa3 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} +[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4215e133 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5ccb85d6 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@d88f893 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} +[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} +[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} +[05Apr2024 11:10:32.934] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} +[05Apr2024 11:10:32.934] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} +[05Apr2024 11:10:32.934] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml +[05Apr2024 11:10:33.301] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) +[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: inject() running with 3 agents +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[05Apr2024 11:10:33.303] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui] +[05Apr2024 11:10:33.323] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out +[05Apr2024 11:10:33.324] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] +[05Apr2024 11:10:33.385] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework +[05Apr2024 11:10:33.387] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple +[05Apr2024 11:10:33.387] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 +[05Apr2024 11:10:33.517] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1 +[05Apr2024 11:10:33.517] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 +[05Apr2024 11:10:33.547] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:10:33.555] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:10:33.558] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/stat +[05Apr2024 11:10:33.567] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:10:33.567] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:10:33.568] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:10:33.568] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:10:33.568] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity +[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity +[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity +[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity +[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity +[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity +[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity +[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity +[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity +[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity +[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity +[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity +[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity +[05Apr2024 11:10:33.579] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:10:33.579] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity +[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity +[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity +[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity +[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity +[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity +[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity +[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity +[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity +[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity +[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity +[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity +[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity +[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity +[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity +[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity +[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity +[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity +[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity +[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity +[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity +[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity +[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity +[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity +[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:10:33.605] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity +[05Apr2024 11:10:33.607] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo +[05Apr2024 11:10:33.634] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:10:33.635] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1 +[05Apr2024 11:10:33.636] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 +[05Apr2024 11:10:33.659] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:10:33.660] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:10:33.901] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType +[05Apr2024 11:10:34.315] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock +[05Apr2024 11:10:34.350] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock +[05Apr2024 11:10:34.411] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock +[05Apr2024 11:10:35.179] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack +[05Apr2024 11:10:35.821] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole +[05Apr2024 11:10:35.861] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem +[05Apr2024 11:10:36.542] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider +[05Apr2024 11:10:36.588] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie +[05Apr2024 11:10:36.644] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager +[05Apr2024 11:10:36.706] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal +[05Apr2024 11:10:36.797] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal +[05Apr2024 11:10:36.813] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider +[05Apr2024 11:10:36.899] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager +[05Apr2024 11:10:36.992] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance +[05Apr2024 11:10:37.361] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure +[05Apr2024 11:10:37.393] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece +[05Apr2024 11:10:37.405] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece +[05Apr2024 11:10:37.417] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece +[05Apr2024 11:10:37.434] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece +[05Apr2024 11:10:37.515] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome +[05Apr2024 11:10:37.815] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 +[05Apr2024 11:10:37.829] [main/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 3 threads for parallel mod-loading +[05Apr2024 11:10:37.832] [main/FATAL] [net.minecraftforge.fml.ModLoader/CORE]: Error during pre-loading phase +net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load +§7We have found 47 + at net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] + at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] + at java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?] + at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] + at net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!/:?] + at net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!/:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] +[05Apr2024 11:10:37.856] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 +[05Apr2024 11:10:37.860] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:10:37.860] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity +[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity +[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity +[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity +[05Apr2024 11:10:37.885] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo +[05Apr2024 11:10:37.916] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:10:37.917] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1 +[05Apr2024 11:10:37.917] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 +[05Apr2024 11:10:37.921] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:10:37.922] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:10:37.932] [main/FATAL] [net.minecraftforge.server.loading.ServerModLoader/]: Crash report saved to ./crash-reports/crash-2024-04-05_11.10.37-fml.txt +[05Apr2024 11:10:37.934] [main/ERROR] [net.minecraft.server.Main/FATAL]: Failed to start the minecraft server +net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [ + Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load +§7We have found 47 +] + at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:149) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!/:?] + at net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!/:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-between.json b/test/data/Vanilla/Forge/forge-language-provider-version-between.json new file mode 100644 index 00000000..4f087937 --- /dev/null +++ b/test/data/Vanilla/Forge/forge-language-provider-version-between.json @@ -0,0 +1,8182 @@ +{ + "id": "forge\/server", + "name": "Forge", + "type": "Server Log", + "version": "1.20.1", + "title": "Forge 1.20.1 Server Log", + "entries": [ + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:47.925] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 1, + "content": "[05Apr2024 11:46:47.925] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui]" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:47.928] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 2, + "content": "[05Apr2024 11:46:47.928] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-94-generic" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.947] [main\/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 3, + "content": "[05Apr2024 11:46:47.947] [main\/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.957] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 4, + "content": "[05Apr2024 11:46:47.957] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Found naming services : [srgtomcp]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.966] [main\/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 5, + "content": "[05Apr2024 11:46:47.966] [main\/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler\/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.974] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 6, + "content": "[05Apr2024 11:46:47.974] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Discovering transformation services" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 7, + "content": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path GAMEDIR is \/server" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 8, + "content": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path MODSDIR is \/server\/mods" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 9, + "content": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path CONFIGDIR is \/server\/config" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 10, + "content": "[05Apr2024 11:46:47.977] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path FMLCONFIG is \/server\/config\/fml.toml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.006] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 11, + "content": "[05Apr2024 11:46:48.006] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Found additional transformation services from discovery services:" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:48.011] [main\/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler\/]:", + "lines": [ + { + "number": 12, + "content": "[05Apr2024 11:46:48.011] [main\/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler\/]: ImmediateWindowProvider not loading because launch target is forgeserver" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.016] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 13, + "content": "[05Apr2024 11:46:48.016] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Found transformer services : [mixin,fml]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.016] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 14, + "content": "[05Apr2024 11:46:48.016] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services loading" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.017] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 15, + "content": "[05Apr2024 11:46:48.017] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loading service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.017] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 16, + "content": "[05Apr2024 11:46:48.017] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loaded service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.017] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 17, + "content": "[05Apr2024 11:46:48.017] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loading service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion\/CORE]:", + "lines": [ + { + "number": 18, + "content": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion\/CORE]: Found FMLLauncher version 1.0" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 19, + "content": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML 1.0 loading" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 20, + "content": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 21, + "content": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 22, + "content": "[05Apr2024 11:46:48.018] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.019] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 23, + "content": "[05Apr2024 11:46:48.019] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Found Runtime Dist Cleaner" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 24, + "content": "[05Apr2024 11:46:48.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 25, + "content": "[05Apr2024 11:46:48.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 26, + "content": "[05Apr2024 11:46:48.020] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Found ForgeSPI package specification 5" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.020] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 27, + "content": "[05Apr2024 11:46:48.020] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Loaded service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.021] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 28, + "content": "[05Apr2024 11:46:48.021] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Configuring option handling for services" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 29, + "content": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services initializing" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 30, + "content": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.035] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 31, + "content": "[05Apr2024 11:46:48.035] [main\/DEBUG] [mixin\/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1fd14d74" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:48.048] [main\/INFO] [mixin\/]:", + "lines": [ + { + "number": 32, + "content": "[05Apr2024 11:46:48.048] [main\/INFO] [mixin\/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:\/server\/libraries\/org\/spongepowered\/mixin\/0.8.5\/mixin-0.8.5.jar%2365!\/ Service=ModLauncher Env=SERVER" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 33, + "content": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]: Initialising Mixin Platform Manager" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 34, + "content": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 35, + "content": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 36, + "content": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 37, + "content": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 38, + "content": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 39, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 40, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 41, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Setting up basic FML game directories" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 42, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path GAMEDIR is \/server" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 43, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path MODSDIR is \/server\/mods" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 44, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path CONFIGDIR is \/server\/config" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", + "lines": [ + { + "number": 45, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path FMLCONFIG is \/server\/config\/fml.toml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 46, + "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading configuration" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 47, + "content": "[05Apr2024 11:46:48.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing ModFile" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 48, + "content": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing launch handler" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 49, + "content": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Using forgeserver as launch service" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", + "lines": [ + { + "number": 50, + "content": "[05Apr2024 11:46:48.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.069] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 51, + "content": "[05Apr2024 11:46:48.069] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 52, + "content": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Current naming domain is 'srg'" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 53, + "content": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Identified name mapping providers {}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 54, + "content": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services begin scanning" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 55, + "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 56, + "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 57, + "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 58, + "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Initiating mod scan" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]:", + "lines": [ + { + "number": 59, + "content": "[05Apr2024 11:46:48.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]: Found mod coordinates from lists: []" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.080] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", + "lines": [ + { + "number": 60, + "content": "[05Apr2024 11:46:48.080] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.081] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", + "lines": [ + { + "number": 61, + "content": "[05Apr2024 11:46:48.081] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Dependency Locators : (JarInJar:null)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.085] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 62, + "content": "[05Apr2024 11:46:48.085] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.113] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 63, + "content": "[05Apr2024 11:46:48.113] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.209] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 64, + "content": "[05Apr2024 11:46:48.209] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.211] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 65, + "content": "[05Apr2024 11:46:48.211] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:46:48.211] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 66, + "content": "[05Apr2024 11:46:48.211] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.212] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 67, + "content": "[05Apr2024 11:46:48.212] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:46:48.212] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 68, + "content": "[05Apr2024 11:46:48.212] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.213] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 69, + "content": "[05Apr2024 11:46:48.213] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:46:48.213] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 70, + "content": "[05Apr2024 11:46:48.213] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.214] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 71, + "content": "[05Apr2024 11:46:48.214] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar" + } + ] + }, + { + "level": 4, + "time": null, + "prefix": "[05Apr2024 11:46:48.214] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 72, + "content": "[05Apr2024 11:46:48.214] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.234] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 73, + "content": "[05Apr2024 11:46:48.234] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.235] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 74, + "content": "[05Apr2024 11:46:48.235] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 75, + "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 76, + "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 77, + "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 78, + "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 79, + "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 80, + "content": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", + "lines": [ + { + "number": 81, + "content": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information." + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:48.265] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]:", + "lines": [ + { + "number": 82, + "content": "[05Apr2024 11:46:48.265] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]: No dependencies to load found. Skipping!" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.267] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 83, + "content": "[05Apr2024 11:46:48.267] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.268] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 84, + "content": "[05Apr2024 11:46:48.268] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraft\/server\/1.20.1-20230612.114412\/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.269] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 85, + "content": "[05Apr2024 11:46:48.269] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 86, + "content": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 87, + "content": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.294] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 88, + "content": "[05Apr2024 11:46:48.294] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_method with Javascript path coremods\/field_to_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 89, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_instanceof with Javascript path coremods\/field_to_instanceof.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 90, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod add_bouncer_method with Javascript path coremods\/add_bouncer_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 91, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod method_redirector with Javascript path coremods\/method_redirector.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 92, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 93, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_instanceof.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 94, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/add_bouncer_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 95, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/method_redirector.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", + "lines": [ + { + "number": 96, + "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", + "lines": [ + { + "number": 97, + "content": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", + "lines": [ + { + "number": 98, + "content": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/mods\/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[45,46)]]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.297] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 99, + "content": "[05Apr2024 11:46:48.297] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 100, + "content": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found 3 language providers" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 101, + "content": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider minecraft, version 1.0" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 102, + "content": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider lowcodefml, version 47" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", + "lines": [ + { + "number": 103, + "content": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider javafml, version 47" + } + ] + }, + { + "level": 3, + "time": null, + "prefix": "[05Apr2024 11:46:48.309] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]:", + "lines": [ + { + "number": 104, + "content": "[05Apr2024 11:46:48.309] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]: Missing language javafml version [45,46) wanted by ironchest-1.20.2-14.5.7.jar, found 47" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", + "lines": [ + { + "number": 105, + "content": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Configured system mods: [minecraft, forge]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", + "lines": [ + { + "number": 106, + "content": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: minecraft" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", + "lines": [ + { + "number": 107, + "content": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: forge" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.313] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", + "lines": [ + { + "number": 108, + "content": "[05Apr2024 11:46:48.313] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.314] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", + "lines": [ + { + "number": 109, + "content": "[05Apr2024 11:46:48.314] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 110, + "content": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services loading transformers" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 111, + "content": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 112, + "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service mixin" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 113, + "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", + "lines": [ + { + "number": 114, + "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading coremod transformers" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 115, + "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 116, + "content": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 117, + "content": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_instanceof.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 118, + "content": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 119, + "content": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/add_bouncer_method.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 120, + "content": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 121, + "content": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/method_redirector.js" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.854] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", + "lines": [ + { + "number": 122, + "content": "[05Apr2024 11:46:48.854] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.860] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 123, + "content": "[05Apr2024 11:46:48.860] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6b4fc2d1 to Target : CLASS {Lnet\/minecraft\/world\/level\/biome\/Biome;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 124, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5a484ce1 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/Structure;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 125, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet\/minecraft\/world\/effect\/MobEffectInstance;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 126, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2ffe243f to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/LiquidBlock;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 127, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@58ae402b to Target : CLASS {Lnet\/minecraft\/world\/item\/BucketItem;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 128, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4099209b to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/StairBlock;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 129, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@43ac0a68 to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/FlowerPotBlock;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 130, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1dad01fe to Target : CLASS {Lnet\/minecraft\/world\/item\/ItemStack;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 131, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet\/minecraft\/network\/play\/client\/CClientSettingsPacket;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 132, + "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/CatSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 133, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 134, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 135, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/server\/commands\/SummonCommand;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 136, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/EntityType;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 137, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/NaturalSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 138, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/ZombieVillager;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 139, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 140, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 141, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Spider;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 142, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/server\/commands\/RaidCommand;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 143, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/frog\/Tadpole;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 144, + "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Strider;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 145, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PatrolSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 146, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/templatesystem\/StructureTemplate;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 147, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PhantomSpawner;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 148, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/ai\/village\/VillageSiege;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 149, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 150, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 151, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Zombie;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 152, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/Villager;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", + "lines": [ + { + "number": 153, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/raid\/Raid;} {} {V}" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", + "lines": [ + { + "number": 154, + "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service fml" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 155, + "content": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 156, + "content": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 157, + "content": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 158, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 159, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 160, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 161, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 162, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 163, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 164, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 165, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 166, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 167, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge)" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 168, + "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 169, + "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: inject() running with 3 agents" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 170, + "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 171, + "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 172, + "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" + } + ] + }, + { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:49.122] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]:", + "lines": [ + { + "number": 173, + "content": "[05Apr2024 11:46:49.122] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.158] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 174, + "content": "[05Apr2024 11:46:49.158] [main\/DEBUG] [mixin\/]: Error cleaning class output directory: .mixin.out" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.159] [main\/DEBUG] [mixin\/]:", + "lines": [ + { + "number": 175, + "content": "[05Apr2024 11:46:49.159] [main\/DEBUG] [mixin\/]: Preparing mixins for MixinEnvironment[DEFAULT]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.200] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]:", + "lines": [ + { + "number": 176, + "content": "[05Apr2024 11:46:49.200] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]: Using SLF4J as the default logging framework" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", + "lines": [ + { + "number": 177, + "content": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.level: simple" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", + "lines": [ + { + "number": 178, + "content": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.targetRecords: 4" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.336] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 179, + "content": "[05Apr2024 11:46:49.336] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.337] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 180, + "content": "[05Apr2024 11:46:49.337] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.369] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 181, + "content": "[05Apr2024 11:46:49.369] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.370] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 182, + "content": "[05Apr2024 11:46:49.370] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.372] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 183, + "content": "[05Apr2024 11:46:49.372] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/stat" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 184, + "content": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 185, + "content": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 186, + "content": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 187, + "content": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 188, + "content": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 189, + "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 190, + "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 191, + "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 192, + "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 193, + "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 194, + "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 195, + "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 196, + "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 197, + "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 198, + "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 199, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 200, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 201, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 202, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 203, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 204, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 205, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 206, + "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 207, + "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 208, + "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 209, + "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 210, + "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 211, + "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 212, + "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 213, + "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 214, + "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 215, + "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 216, + "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 217, + "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 218, + "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 219, + "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 220, + "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 221, + "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 222, + "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 223, + "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 224, + "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 225, + "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 226, + "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 227, + "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 228, + "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 229, + "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 230, + "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 231, + "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 232, + "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 233, + "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 234, + "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 235, + "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 236, + "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 237, + "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 238, + "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 239, + "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 240, + "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 241, + "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 242, + "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 243, + "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 244, + "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 245, + "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 246, + "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 247, + "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 248, + "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 249, + "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 250, + "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 251, + "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 252, + "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 253, + "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 254, + "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 255, + "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 256, + "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 257, + "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 258, + "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 259, + "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 260, + "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 261, + "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 262, + "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 263, + "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 264, + "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 265, + "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 266, + "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 267, + "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 268, + "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 269, + "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 270, + "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 271, + "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 272, + "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 273, + "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 274, + "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 275, + "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 276, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 277, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 278, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 279, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 280, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 281, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 282, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 283, + "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 284, + "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 285, + "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 286, + "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 287, + "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 288, + "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 289, + "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 290, + "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 291, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 292, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 293, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 294, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 295, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 296, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 297, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 298, + "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 299, + "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 300, + "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 301, + "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 302, + "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 303, + "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 304, + "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 305, + "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 306, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 307, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 308, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 309, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 310, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 311, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 312, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 313, + "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 314, + "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 315, + "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 316, + "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 317, + "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 318, + "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 319, + "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 320, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 321, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 322, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 323, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 324, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 325, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 326, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 327, + "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 328, + "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 329, + "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 330, + "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 331, + "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 332, + "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 333, + "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 334, + "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 335, + "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 336, + "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 337, + "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 338, + "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 339, + "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 340, + "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 341, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 342, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 343, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 344, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 345, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 346, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 347, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 348, + "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 349, + "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 350, + "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 351, + "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 352, + "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 353, + "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 354, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 355, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 356, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 357, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 358, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 359, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 360, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 361, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 362, + "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 363, + "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 364, + "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 365, + "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 366, + "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 367, + "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 368, + "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 369, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 370, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 371, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 372, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 373, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 374, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 375, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 376, + "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 377, + "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 378, + "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 379, + "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 380, + "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 381, + "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 382, + "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 383, + "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 384, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 385, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 386, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 387, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 388, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 389, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 390, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 391, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 392, + "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 393, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 394, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 395, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 396, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 397, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 398, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 399, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 400, + "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 401, + "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 402, + "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 403, + "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 404, + "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 405, + "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 406, + "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 407, + "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 408, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 409, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 410, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 411, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 412, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 413, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 414, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 415, + "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 416, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 417, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 418, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 419, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 420, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 421, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 422, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 423, + "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.417] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 424, + "content": "[05Apr2024 11:46:49.417] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.425] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 425, + "content": "[05Apr2024 11:46:49.425] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 426, + "content": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 427, + "content": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.435] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 428, + "content": "[05Apr2024 11:46:49.435] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.436] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 429, + "content": "[05Apr2024 11:46:49.436] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.618] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 430, + "content": "[05Apr2024 11:46:49.618] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/EntityType" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.962] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 431, + "content": "[05Apr2024 11:46:49.962] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/LiquidBlock" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:49.993] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 432, + "content": "[05Apr2024 11:46:49.993] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/StairBlock" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:50.047] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 433, + "content": "[05Apr2024 11:46:50.047] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/FlowerPotBlock" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:50.665] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 434, + "content": "[05Apr2024 11:46:50.665] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/ItemStack" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:51.306] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 435, + "content": "[05Apr2024 11:46:51.306] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/frog\/Tadpole" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:51.345] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 436, + "content": "[05Apr2024 11:46:51.345] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/BucketItem" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:51.916] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 437, + "content": "[05Apr2024 11:46:51.916] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Spider" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.027] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 438, + "content": "[05Apr2024 11:46:52.027] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Zombie" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.096] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 439, + "content": "[05Apr2024 11:46:52.096] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/ZombieVillager" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.155] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 440, + "content": "[05Apr2024 11:46:52.155] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.241] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 441, + "content": "[05Apr2024 11:46:52.241] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.255] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 442, + "content": "[05Apr2024 11:46:52.255] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Strider" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.333] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 443, + "content": "[05Apr2024 11:46:52.333] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/npc\/Villager" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.419] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 444, + "content": "[05Apr2024 11:46:52.419] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/effect\/MobEffectInstance" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.789] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 445, + "content": "[05Apr2024 11:46:52.789] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/Structure" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.820] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 446, + "content": "[05Apr2024 11:46:52.820] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.833] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 447, + "content": "[05Apr2024 11:46:52.833] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.846] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 448, + "content": "[05Apr2024 11:46:52.846] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.865] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 449, + "content": "[05Apr2024 11:46:52.865] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:52.951] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", + "lines": [ + { + "number": 450, + "content": "[05Apr2024 11:46:52.951] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/biome\/Biome" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.225] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", + "lines": [ + { + "number": 451, + "content": "[05Apr2024 11:46:53.225] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.241] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]:", + "lines": [ + { + "number": 452, + "content": "[05Apr2024 11:46:53.241] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]: Using 3 threads for parallel mod-loading" + } + ] + }, + { + "level": 2, + "time": null, + "prefix": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", + "lines": [ + { + "number": 453, + "content": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" + }, + { + "number": 454, + "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load" + }, + { + "number": 455, + "content": "\u00a77We have found 47" + }, + { + "number": 456, + "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 457, + "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" + }, + { + "number": 458, + "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" + }, + { + "number": 459, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 460, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 461, + "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" + }, + { + "number": 462, + "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" + }, + { + "number": 463, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 464, + "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" + }, + { + "number": 465, + "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" + }, + { + "number": 466, + "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" + }, + { + "number": 467, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 468, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 469, + "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" + }, + { + "number": 470, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 471, + "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" + }, + { + "number": 472, + "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 473, + "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 474, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, + { + "number": 475, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, + { + "number": 476, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, + { + "number": 477, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, + { + "number": 478, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, + { + "number": 479, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, + { + "number": 480, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 481, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 482, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 483, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 484, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 485, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 486, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 487, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 488, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 489, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 490, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.271] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", + "lines": [ + { + "number": 491, + "content": "[05Apr2024 11:46:53.271] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 492, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 493, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 494, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 495, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 496, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 497, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 498, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 499, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 500, + "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 501, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 502, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 503, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 504, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 505, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 506, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 507, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 508, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 509, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 510, + "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 511, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 512, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 513, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 514, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 515, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 516, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 517, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 518, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 519, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 520, + "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 521, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 522, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 523, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 524, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 525, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 526, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 527, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 528, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 529, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 530, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 531, + "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 532, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 533, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 534, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 535, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 536, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 537, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 538, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 539, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 540, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 541, + "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 542, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 543, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 544, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 545, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 546, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 547, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 548, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 549, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 550, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 551, + "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 552, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 553, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 554, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 555, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 556, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 557, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 558, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 559, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 560, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 561, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 562, + "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 563, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 564, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 565, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 566, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 567, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 568, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 569, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 570, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 571, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 572, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 573, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 574, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 575, + "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 576, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 577, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 578, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 579, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 580, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 581, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 582, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 583, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 584, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 585, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 586, + "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 587, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 588, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 589, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 590, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 591, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 592, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 593, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 594, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 595, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 596, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 597, + "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 598, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 599, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 600, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 601, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 602, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 603, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 604, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 605, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 606, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 607, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 608, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 609, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 610, + "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 611, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 612, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 613, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 614, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 615, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 616, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 617, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 618, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 619, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 620, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 621, + "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 622, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 623, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 624, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 625, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 626, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 627, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 628, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 629, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 630, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 631, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 632, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 633, + "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 634, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 635, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 636, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 637, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 638, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 639, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 640, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 641, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 642, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 643, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 644, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 645, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 646, + "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 647, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 648, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 649, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 650, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 651, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 652, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 653, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 654, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 655, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 656, + "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 657, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 658, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 659, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 660, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 661, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 662, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 663, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 664, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 665, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 666, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 667, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 668, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 669, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 670, + "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 671, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 672, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 673, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 674, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 675, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 676, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 677, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 678, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 679, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 680, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 681, + "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 682, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 683, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 684, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 685, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 686, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 687, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 688, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 689, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 690, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 691, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 692, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 693, + "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 694, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 695, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 696, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 697, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 698, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 699, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 700, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 701, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 702, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 703, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 704, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 705, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 706, + "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 707, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 708, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 709, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 710, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 711, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 712, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 713, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 714, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 715, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 716, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 717, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 718, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 719, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 720, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 721, + "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 722, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 723, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 724, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 725, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 726, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 727, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 728, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 729, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 730, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 731, + "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.296] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 732, + "content": "[05Apr2024 11:46:53.296] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.325] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 733, + "content": "[05Apr2024 11:46:53.325] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 734, + "content": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 735, + "content": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.330] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 736, + "content": "[05Apr2024 11:46:53.330] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 7, + "time": null, + "prefix": "[05Apr2024 11:46:53.331] [main\/DEBUG] [oshi.util.FileUtil\/]:", + "lines": [ + { + "number": 737, + "content": "[05Apr2024 11:46:53.331] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + } + ] + }, + { + "level": 2, + "time": null, + "prefix": "[05Apr2024 11:46:53.339] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]:", + "lines": [ + { + "number": 738, + "content": "[05Apr2024 11:46:53.339] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]: Crash report saved to .\/crash-reports\/crash-2024-04-05_11.46.53-fml.txt" + } + ] + }, + { + "level": 3, + "time": null, + "prefix": "[05Apr2024 11:46:53.340] [main\/ERROR] [net.minecraft.server.Main\/FATAL]:", + "lines": [ + { + "number": 739, + "content": "[05Apr2024 11:46:53.340] [main\/ERROR] [net.minecraft.server.Main\/FATAL]: Failed to start the minecraft server" + }, + { + "number": 740, + "content": "net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [" + }, + { + "number": 741, + "content": "\tMod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load" + }, + { + "number": 742, + "content": "\u00a77We have found 47" + }, + { + "number": 743, + "content": "]" + }, + { + "number": 744, + "content": "\tat net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:149) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 745, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, + { + "number": 746, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, + { + "number": 747, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, + { + "number": 748, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, + { + "number": 749, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, + { + "number": 750, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, + { + "number": 751, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 752, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 753, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 754, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 755, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 756, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 757, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 758, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 759, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 760, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 761, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" + }, + { + "number": 762, + "content": "" + } + ] + } + ], + "analysis": { + "problems": [ + { + "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires Forge 45 or above, and below 46, but 47 is installed.", + "counter": 2, + "entry": { + "level": 2, + "time": null, + "prefix": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", + "lines": [ + { + "number": 453, + "content": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" + }, + { + "number": 454, + "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load" + }, + { + "number": 455, + "content": "\u00a77We have found 47" + }, + { + "number": 456, + "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 457, + "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" + }, + { + "number": 458, + "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" + }, + { + "number": 459, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 460, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 461, + "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" + }, + { + "number": 462, + "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" + }, + { + "number": 463, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 464, + "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" + }, + { + "number": 465, + "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" + }, + { + "number": 466, + "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" + }, + { + "number": 467, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, + { + "number": 468, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, + { + "number": 469, + "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" + }, + { + "number": 470, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, + { + "number": 471, + "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" + }, + { + "number": 472, + "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 473, + "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, + { + "number": 474, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, + { + "number": 475, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, + { + "number": 476, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, + { + "number": 477, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, + { + "number": 478, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, + { + "number": 479, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, + { + "number": 480, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 481, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 482, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, + { + "number": 483, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 484, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 485, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 486, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 487, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 488, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 489, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 490, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" + } + ] + }, + "solutions": [ + { + "message": "Remove the mod 'ironchest-1.20.2-14.5.7.jar'." + }, + { + "message": "Install a different Forge version." + } + ] + } + ], + "information": [ + { + "message": "Minecraft version: 1.20.1", + "counter": 1, + "entry": { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:47.925] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 1, + "content": "[05Apr2024 11:46:47.925] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui]" + } + ] + }, + "label": "Minecraft version", + "value": "1.20.1" + }, + { + "message": "Forge version: 47.2.0", + "counter": 1, + "entry": { + "level": 6, + "time": null, + "prefix": "[05Apr2024 11:46:47.925] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]:", + "lines": [ + { + "number": 1, + "content": "[05Apr2024 11:46:47.925] [main\/INFO] [cpw.mods.modlauncher.Launcher\/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui]" + } + ] + }, + "label": "Forge version", + "value": "47.2.0" + } + ] + } +} \ No newline at end of file diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-between.log b/test/data/Vanilla/Forge/forge-language-provider-version-between.log new file mode 100644 index 00000000..71583d9f --- /dev/null +++ b/test/data/Vanilla/Forge/forge-language-provider-version-between.log @@ -0,0 +1,761 @@ +[05Apr2024 11:46:47.925] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.2.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] +[05Apr2024 11:46:47.928] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.10 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-94-generic +[05Apr2024 11:46:47.947] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] +[05Apr2024 11:46:47.957] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] +[05Apr2024 11:46:47.966] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] +[05Apr2024 11:46:47.974] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services +[05Apr2024 11:46:47.977] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /server +[05Apr2024 11:46:47.977] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /server/mods +[05Apr2024 11:46:47.977] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /server/config +[05Apr2024 11:46:47.977] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /server/config/fml.toml +[05Apr2024 11:46:48.006] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: +[05Apr2024 11:46:48.011] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver +[05Apr2024 11:46:48.016] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] +[05Apr2024 11:46:48.016] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading +[05Apr2024 11:46:48.017] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin +[05Apr2024 11:46:48.017] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin +[05Apr2024 11:46:48.017] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml +[05Apr2024 11:46:48.018] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 +[05Apr2024 11:46:48.018] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading +[05Apr2024 11:46:48.018] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 +[05Apr2024 11:46:48.018] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 +[05Apr2024 11:46:48.018] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b +[05Apr2024 11:46:48.019] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner +[05Apr2024 11:46:48.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.0.1+15+master.dc5a2922 +[05Apr2024 11:46:48.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 +[05Apr2024 11:46:48.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 +[05Apr2024 11:46:48.020] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml +[05Apr2024 11:46:48.021] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services +[05Apr2024 11:46:48.025] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing +[05Apr2024 11:46:48.025] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin +[05Apr2024 11:46:48.035] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1fd14d74 +[05Apr2024 11:46:48.048] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER +[05Apr2024 11:46:48.051] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager +[05Apr2024 11:46:48.051] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:46:48.052] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:46:48.052] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:46:48.053] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:46:48.053] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) +[05Apr2024 11:46:48.055] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin +[05Apr2024 11:46:48.055] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml +[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories +[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /server +[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /server/mods +[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /server/config +[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /server/config/fml.toml +[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration +[05Apr2024 11:46:48.057] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile +[05Apr2024 11:46:48.059] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler +[05Apr2024 11:46:48.059] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service +[05Apr2024 11:46:48.068] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] +[05Apr2024 11:46:48.069] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml +[05Apr2024 11:46:48.070] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' +[05Apr2024 11:46:48.070] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} +[05Apr2024 11:46:48.070] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning +[05Apr2024 11:46:48.071] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin +[05Apr2024 11:46:48.071] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin +[05Apr2024 11:46:48.071] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml +[05Apr2024 11:46:48.071] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan +[05Apr2024 11:46:48.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] +[05Apr2024 11:46:48.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) +[05Apr2024 11:46:48.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) +[05Apr2024 11:46:48.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar +[05Apr2024 11:46:48.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} +[05Apr2024 11:46:48.209] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} +[05Apr2024 11:46:48.211] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar +[05Apr2024 11:46:48.211] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:46:48.212] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar +[05Apr2024 11:46:48.212] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:46:48.213] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar +[05Apr2024 11:46:48.213] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:46:48.214] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar +[05Apr2024 11:46:48.214] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file +[05Apr2024 11:46:48.234] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar +[05Apr2024 11:46:48.235] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} +[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information. +[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information. +[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information. +[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:46:48.245] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:46:48.245] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information. +[05Apr2024 11:46:48.265] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! +[05Apr2024 11:46:48.267] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} +[05Apr2024 11:46:48.268] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraft/server/1.20.1-20230612.114412/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] +[05Apr2024 11:46:48.269] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar +[05Apr2024 11:46:48.270] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} +[05Apr2024 11:46:48.270] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] +[05Apr2024 11:46:48.294] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js +[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar +[05Apr2024 11:46:48.296] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} +[05Apr2024 11:46:48.296] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/mods/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[45,46)]] +[05Apr2024 11:46:48.297] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml +[05Apr2024 11:46:48.307] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers +[05Apr2024 11:46:48.307] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 +[05Apr2024 11:46:48.308] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 +[05Apr2024 11:46:48.308] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 +[05Apr2024 11:46:48.309] [main/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider/LOADING]: Missing language javafml version [45,46) wanted by ironchest-1.20.2-14.5.7.jar, found 47 +[05Apr2024 11:46:48.312] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] +[05Apr2024 11:46:48.312] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft +[05Apr2024 11:46:48.312] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge +[05Apr2024 11:46:48.313] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional) +[05Apr2024 11:46:48.314] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) +[05Apr2024 11:46:48.564] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers +[05Apr2024 11:46:48.564] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin +[05Apr2024 11:46:48.565] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin +[05Apr2024 11:46:48.565] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml +[05Apr2024 11:46:48.565] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers +[05Apr2024 11:46:48.565] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js +[05Apr2024 11:46:48.688] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:46:48.688] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js +[05Apr2024 11:46:48.764] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:46:48.764] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js +[05Apr2024 11:46:48.789] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:46:48.789] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js +[05Apr2024 11:46:48.854] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[05Apr2024 11:46:48.860] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6b4fc2d1 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5a484ce1 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2ffe243f to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@58ae402b to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4099209b to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@43ac0a68 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1dad01fe to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} +[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} +[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} +[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml +[05Apr2024 11:46:49.120] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[05Apr2024 11:46:49.120] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[05Apr2024 11:46:49.120] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) +[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: inject() running with 3 agents +[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[05Apr2024 11:46:49.122] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui] +[05Apr2024 11:46:49.158] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out +[05Apr2024 11:46:49.159] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] +[05Apr2024 11:46:49.200] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework +[05Apr2024 11:46:49.202] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple +[05Apr2024 11:46:49.202] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 +[05Apr2024 11:46:49.336] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab +[05Apr2024 11:46:49.337] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 +[05Apr2024 11:46:49.369] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:46:49.370] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:46:49.372] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/stat +[05Apr2024 11:46:49.380] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:46:49.380] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:46:49.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:46:49.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:46:49.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity +[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity +[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity +[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity +[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity +[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity +[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity +[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity +[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity +[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity +[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity +[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity +[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity +[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity +[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity +[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity +[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity +[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity +[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity +[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity +[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity +[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity +[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity +[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity +[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity +[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity +[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity +[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity +[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity +[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity +[05Apr2024 11:46:49.417] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo +[05Apr2024 11:46:49.425] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:46:49.427] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab +[05Apr2024 11:46:49.427] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 +[05Apr2024 11:46:49.435] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:46:49.436] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:46:49.618] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType +[05Apr2024 11:46:49.962] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock +[05Apr2024 11:46:49.993] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock +[05Apr2024 11:46:50.047] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock +[05Apr2024 11:46:50.665] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack +[05Apr2024 11:46:51.306] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole +[05Apr2024 11:46:51.345] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem +[05Apr2024 11:46:51.916] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider +[05Apr2024 11:46:52.027] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie +[05Apr2024 11:46:52.096] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager +[05Apr2024 11:46:52.155] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal +[05Apr2024 11:46:52.241] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal +[05Apr2024 11:46:52.255] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider +[05Apr2024 11:46:52.333] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager +[05Apr2024 11:46:52.419] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance +[05Apr2024 11:46:52.789] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure +[05Apr2024 11:46:52.820] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece +[05Apr2024 11:46:52.833] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece +[05Apr2024 11:46:52.846] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece +[05Apr2024 11:46:52.865] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece +[05Apr2024 11:46:52.951] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome +[05Apr2024 11:46:53.225] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 +[05Apr2024 11:46:53.241] [main/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 3 threads for parallel mod-loading +[05Apr2024 11:46:53.244] [main/FATAL] [net.minecraftforge.fml.ModLoader/CORE]: Error during pre-loading phase +net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load +§7We have found 47 + at net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?] + at java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?] + at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?] + at java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?] + at java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?] + at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?] + at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?] + at java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?] + at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?] + at java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?] + at net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!/:?] + at net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!/:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] +[05Apr2024 11:46:53.271] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id +[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id +[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id +[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity +[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id +[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity +[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id +[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id +[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id +[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id +[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id +[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id +[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id +[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity +[05Apr2024 11:46:53.296] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo +[05Apr2024 11:46:53.325] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv +[05Apr2024 11:46:53.326] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab +[05Apr2024 11:46:53.326] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 +[05Apr2024 11:46:53.330] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:46:53.331] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo +[05Apr2024 11:46:53.339] [main/FATAL] [net.minecraftforge.server.loading.ServerModLoader/]: Crash report saved to ./crash-reports/crash-2024-04-05_11.46.53-fml.txt +[05Apr2024 11:46:53.340] [main/ERROR] [net.minecraft.server.Main/FATAL]: Failed to start the minecraft server +net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [ + Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load +§7We have found 47 +] + at net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:149) ~[fmlcore-1.20.1-47.2.0.jar%23104!/:?] + at net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!/:?] + at net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!/:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] + at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!/:?] + at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] + at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] diff --git a/test/tests/Logs/AutoLogsTest.php b/test/tests/Logs/AutoLogsTest.php index 714b0bfd..74f10832 100644 --- a/test/tests/Logs/AutoLogsTest.php +++ b/test/tests/Logs/AutoLogsTest.php @@ -924,6 +924,26 @@ public function test_forge_early_crash(): void $this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath()); } + /** + * @return void + * @throws Exception + */ + public function test_forge_language_provider_version_above(): void + { + $log = new TestLog('Vanilla/Forge/forge-language-provider-version-above.log'); + $this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath()); + } + + /** + * @return void + * @throws Exception + */ + public function test_forge_language_provider_version_between(): void + { + $log = new TestLog('Vanilla/Forge/forge-language-provider-version-between.log'); + $this->assertStringEqualsFile($log->getExpectedPath(), $log->getOutput(), $log->getLogPath()); + } + /** * @return void * @throws Exception From 411a525ea7a7167d578c9c5e6adcdfecf237b920 Mon Sep 17 00:00:00 2001 From: Kurt Thiemann Date: Fri, 5 Apr 2024 17:18:25 +0200 Subject: [PATCH 2/4] shorten test logs --- ...forge-language-provider-version-above.json | 7693 +--------------- .../forge-language-provider-version-above.log | 669 -- ...rge-language-provider-version-between.json | 7719 +---------------- ...orge-language-provider-version-between.log | 671 -- 4 files changed, 336 insertions(+), 16416 deletions(-) diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-above.json b/test/data/Vanilla/Forge/forge-language-provider-version-above.json index aa4d5848..95d91d80 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-above.json +++ b/test/data/Vanilla/Forge/forge-language-provider-version-above.json @@ -336,7520 +336,161 @@ ] }, { - "level": 7, + "level": 2, "time": null, - "prefix": "[05Apr2024 11:10:32.036] [main\/DEBUG] [mixin\/]:", + "prefix": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", "lines": [ { "number": 31, - "content": "[05Apr2024 11:10:32.036] [main\/DEBUG] [mixin\/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@5cdec700" - } - ] - }, - { - "level": 6, - "time": null, - "prefix": "[05Apr2024 11:10:32.047] [main\/INFO] [mixin\/]:", - "lines": [ + "content": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" + }, { "number": 32, - "content": "[05Apr2024 11:10:32.047] [main\/INFO] [mixin\/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:\/server\/libraries\/org\/spongepowered\/mixin\/0.8.5\/mixin-0.8.5.jar%2365!\/ Service=ModLauncher Env=SERVER" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.049] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load" + }, { "number": 33, - "content": "[05Apr2024 11:10:32.049] [main\/DEBUG] [mixin\/]: Initialising Mixin Platform Manager" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\u00a77We have found 47" + }, { "number": 34, - "content": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, { "number": 35, - "content": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" + }, { "number": 36, - "content": "[05Apr2024 11:10:32.050] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" + }, { "number": 37, - "content": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, { "number": 38, - "content": "[05Apr2024 11:10:32.051] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, { "number": 39, - "content": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ + "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" + }, { "number": 40, - "content": "[05Apr2024 11:10:32.052] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.052] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ + "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" + }, { "number": 41, - "content": "[05Apr2024 11:10:32.052] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Setting up basic FML game directories" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, { "number": 42, - "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path GAMEDIR is \/server" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ + "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" + }, { "number": 43, - "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path MODSDIR is \/server\/mods" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ - { - "number": 44, - "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path CONFIGDIR is \/server\/config" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ - { - "number": 45, - "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path FMLCONFIG is \/server\/config\/fml.toml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 46, - "content": "[05Apr2024 11:10:32.053] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading configuration" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 47, - "content": "[05Apr2024 11:10:32.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing ModFile" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.056] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 48, - "content": "[05Apr2024 11:10:32.056] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing launch handler" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", - "lines": [ - { - "number": 49, - "content": "[05Apr2024 11:10:32.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Using forgeserver as launch service" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.066] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", - "lines": [ - { - "number": 50, - "content": "[05Apr2024 11:10:32.066] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 51, - "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 52, - "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Current naming domain is 'srg'" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 53, - "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Identified name mapping providers {}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 54, - "content": "[05Apr2024 11:10:32.067] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services begin scanning" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 55, - "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 56, - "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 57, - "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 58, - "content": "[05Apr2024 11:10:32.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Initiating mod scan" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.076] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]:", - "lines": [ - { - "number": 59, - "content": "[05Apr2024 11:10:32.076] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]: Found mod coordinates from lists: []" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", - "lines": [ - { - "number": 60, - "content": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", - "lines": [ - { - "number": 61, - "content": "[05Apr2024 11:10:32.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Dependency Locators : (JarInJar:null)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.082] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 62, - "content": "[05Apr2024 11:10:32.082] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.109] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 63, - "content": "[05Apr2024 11:10:32.109] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.199] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 64, - "content": "[05Apr2024 11:10:32.199] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.200] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 65, - "content": "[05Apr2024 11:10:32.200] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:10:32.200] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 66, - "content": "[05Apr2024 11:10:32.200] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.201] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 67, - "content": "[05Apr2024 11:10:32.201] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:10:32.201] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 68, - "content": "[05Apr2024 11:10:32.201] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.202] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 69, - "content": "[05Apr2024 11:10:32.202] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:10:32.202] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 70, - "content": "[05Apr2024 11:10:32.202] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.203] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 71, - "content": "[05Apr2024 11:10:32.203] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:10:32.203] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 72, - "content": "[05Apr2024 11:10:32.203] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.227] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 73, - "content": "[05Apr2024 11:10:32.227] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.228] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 74, - "content": "[05Apr2024 11:10:32.228] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 75, - "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 76, - "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 77, - "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 78, - "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 79, - "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 80, - "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 81, - "content": "[05Apr2024 11:10:32.236] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 6, - "time": null, - "prefix": "[05Apr2024 11:10:32.254] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]:", - "lines": [ - { - "number": 82, - "content": "[05Apr2024 11:10:32.254] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]: No dependencies to load found. Skipping!" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.256] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 83, - "content": "[05Apr2024 11:10:32.256] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.257] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 84, - "content": "[05Apr2024 11:10:32.257] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraft\/server\/1.20.1-20230612.114412\/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.258] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 85, - "content": "[05Apr2024 11:10:32.258] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 86, - "content": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 87, - "content": "[05Apr2024 11:10:32.259] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 88, - "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_method with Javascript path coremods\/field_to_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 89, - "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_instanceof with Javascript path coremods\/field_to_instanceof.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 90, - "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod add_bouncer_method with Javascript path coremods\/add_bouncer_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 91, - "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod method_redirector with Javascript path coremods\/method_redirector.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 92, - "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 93, - "content": "[05Apr2024 11:10:32.282] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_instanceof.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 94, - "content": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/add_bouncer_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 95, - "content": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/method_redirector.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 96, - "content": "[05Apr2024 11:10:32.283] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 97, - "content": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 98, - "content": "[05Apr2024 11:10:32.284] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/mods\/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[48,)]]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.284] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 99, - "content": "[05Apr2024 11:10:32.284] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 100, - "content": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found 3 language providers" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 101, - "content": "[05Apr2024 11:10:32.292] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider minecraft, version 1.0" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 102, - "content": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider lowcodefml, version 47" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 103, - "content": "[05Apr2024 11:10:32.293] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider javafml, version 47" - } - ] - }, - { - "level": 3, - "time": null, - "prefix": "[05Apr2024 11:10:32.294] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]:", - "lines": [ - { - "number": 104, - "content": "[05Apr2024 11:10:32.294] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]: Missing language javafml version [48,) wanted by ironchest-1.20.2-14.5.7.jar, found 47" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", - "lines": [ - { - "number": 105, - "content": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Configured system mods: [minecraft, forge]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", - "lines": [ - { - "number": 106, - "content": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: minecraft" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", - "lines": [ - { - "number": 107, - "content": "[05Apr2024 11:10:32.297] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: forge" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", - "lines": [ - { - "number": 108, - "content": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", - "lines": [ - { - "number": 109, - "content": "[05Apr2024 11:10:32.298] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 110, - "content": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services loading transformers" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 111, - "content": "[05Apr2024 11:10:32.581] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 112, - "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 113, - "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 114, - "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading coremod transformers" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 115, - "content": "[05Apr2024 11:10:32.582] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.773] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 116, - "content": "[05Apr2024 11:10:32.773] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.774] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 117, - "content": "[05Apr2024 11:10:32.774] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_instanceof.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.820] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 118, - "content": "[05Apr2024 11:10:32.820] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.821] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 119, - "content": "[05Apr2024 11:10:32.821] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/add_bouncer_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 120, - "content": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 121, - "content": "[05Apr2024 11:10:32.874] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/method_redirector.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.923] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 122, - "content": "[05Apr2024 11:10:32.923] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.930] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 123, - "content": "[05Apr2024 11:10:32.930] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet\/minecraft\/world\/level\/biome\/Biome;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 124, - "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/Structure;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 125, - "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/effect\/MobEffectInstance;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 126, - "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1de0641b to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/LiquidBlock;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 127, - "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@68b734a8 to Target : CLASS {Lnet\/minecraft\/world\/item\/BucketItem;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 128, - "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1a464fa3 to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/StairBlock;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 129, - "content": "[05Apr2024 11:10:32.931] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4215e133 to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/FlowerPotBlock;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 130, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5ccb85d6 to Target : CLASS {Lnet\/minecraft\/world\/item\/ItemStack;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 131, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@d88f893 to Target : CLASS {Lnet\/minecraft\/network\/play\/client\/CClientSettingsPacket;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 132, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/frog\/Tadpole;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 133, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 134, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/ZombieVillager;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 135, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 136, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/CatSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 137, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PatrolSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 138, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Spider;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 139, - "content": "[05Apr2024 11:10:32.932] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/ai\/village\/VillageSiege;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 140, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/server\/commands\/RaidCommand;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 141, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PhantomSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 142, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/server\/commands\/SummonCommand;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 143, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Strider;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 144, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/NaturalSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 145, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Zombie;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 146, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/templatesystem\/StructureTemplate;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 147, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/Villager;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 148, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/raid\/Raid;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 149, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/EntityType;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 150, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 151, - "content": "[05Apr2024 11:10:32.933] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 152, - "content": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 153, - "content": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 154, - "content": "[05Apr2024 11:10:32.934] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.301] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 155, - "content": "[05Apr2024 11:10:33.301] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 156, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 157, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 158, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 159, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 160, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 161, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 162, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 163, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 164, - "content": "[05Apr2024 11:10:33.302] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 165, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 166, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 167, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 168, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 169, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: inject() running with 3 agents" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 170, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 171, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 172, - "content": "[05Apr2024 11:10:33.303] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" - } - ] - }, - { - "level": 6, - "time": null, - "prefix": "[05Apr2024 11:10:33.303] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 173, - "content": "[05Apr2024 11:10:33.303] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.323] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 174, - "content": "[05Apr2024 11:10:33.323] [main\/DEBUG] [mixin\/]: Error cleaning class output directory: .mixin.out" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.324] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 175, - "content": "[05Apr2024 11:10:33.324] [main\/DEBUG] [mixin\/]: Preparing mixins for MixinEnvironment[DEFAULT]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.385] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]:", - "lines": [ - { - "number": 176, - "content": "[05Apr2024 11:10:33.385] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]: Using SLF4J as the default logging framework" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", - "lines": [ - { - "number": 177, - "content": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.level: simple" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", - "lines": [ - { - "number": 178, - "content": "[05Apr2024 11:10:33.387] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.targetRecords: 4" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 179, - "content": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 180, - "content": "[05Apr2024 11:10:33.517] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.547] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 181, - "content": "[05Apr2024 11:10:33.547] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.555] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 182, - "content": "[05Apr2024 11:10:33.555] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.558] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 183, - "content": "[05Apr2024 11:10:33.558] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/stat" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 184, - "content": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 185, - "content": "[05Apr2024 11:10:33.567] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 186, - "content": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 187, - "content": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 188, - "content": "[05Apr2024 11:10:33.568] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 189, - "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 190, - "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 191, - "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 192, - "content": "[05Apr2024 11:10:33.569] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 193, - "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 194, - "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 195, - "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 196, - "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 197, - "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 198, - "content": "[05Apr2024 11:10:33.570] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 199, - "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 200, - "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 201, - "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 202, - "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 203, - "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 204, - "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 205, - "content": "[05Apr2024 11:10:33.571] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 206, - "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 207, - "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 208, - "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 209, - "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 210, - "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 211, - "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 212, - "content": "[05Apr2024 11:10:33.572] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 213, - "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 214, - "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 215, - "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 216, - "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 217, - "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 218, - "content": "[05Apr2024 11:10:33.573] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 219, - "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 220, - "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 221, - "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 222, - "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 223, - "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 224, - "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 225, - "content": "[05Apr2024 11:10:33.574] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 226, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 227, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 228, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 229, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 230, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 231, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 232, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 233, - "content": "[05Apr2024 11:10:33.575] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 234, - "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 235, - "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 236, - "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 237, - "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 238, - "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 239, - "content": "[05Apr2024 11:10:33.576] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 240, - "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 241, - "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 242, - "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 243, - "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 244, - "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 245, - "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 246, - "content": "[05Apr2024 11:10:33.577] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 247, - "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 248, - "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 249, - "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 250, - "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 251, - "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 252, - "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 253, - "content": "[05Apr2024 11:10:33.578] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 254, - "content": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 255, - "content": "[05Apr2024 11:10:33.579] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 256, - "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 257, - "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 258, - "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 259, - "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 260, - "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 261, - "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 262, - "content": "[05Apr2024 11:10:33.580] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 263, - "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 264, - "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 265, - "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 266, - "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 267, - "content": "[05Apr2024 11:10:33.581] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 268, - "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 269, - "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 270, - "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 271, - "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 272, - "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 273, - "content": "[05Apr2024 11:10:33.582] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 274, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 275, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 276, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 277, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 278, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 279, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 280, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 281, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 282, - "content": "[05Apr2024 11:10:33.583] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 283, - "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 284, - "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 285, - "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 286, - "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 287, - "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 288, - "content": "[05Apr2024 11:10:33.584] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 289, - "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 290, - "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 291, - "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 292, - "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 293, - "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 294, - "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 295, - "content": "[05Apr2024 11:10:33.585] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 296, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 297, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 298, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 299, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 300, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 301, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 302, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 303, - "content": "[05Apr2024 11:10:33.586] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 304, - "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 305, - "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 306, - "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 307, - "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 308, - "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 309, - "content": "[05Apr2024 11:10:33.587] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 310, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 311, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 312, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 313, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 314, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 315, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 316, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 317, - "content": "[05Apr2024 11:10:33.588] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 318, - "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 319, - "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 320, - "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 321, - "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 322, - "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 323, - "content": "[05Apr2024 11:10:33.589] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 324, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 325, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 326, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 327, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 328, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 329, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 330, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 331, - "content": "[05Apr2024 11:10:33.590] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 332, - "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 333, - "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 334, - "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 335, - "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 336, - "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 337, - "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 338, - "content": "[05Apr2024 11:10:33.591] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 339, - "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 340, - "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 341, - "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 342, - "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 343, - "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 344, - "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 345, - "content": "[05Apr2024 11:10:33.592] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 346, - "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 347, - "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 348, - "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 349, - "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 350, - "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 351, - "content": "[05Apr2024 11:10:33.593] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 352, - "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 353, - "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 354, - "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 355, - "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 356, - "content": "[05Apr2024 11:10:33.594] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 357, - "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 358, - "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 359, - "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 360, - "content": "[05Apr2024 11:10:33.595] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 361, - "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 362, - "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 363, - "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 364, - "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 365, - "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 366, - "content": "[05Apr2024 11:10:33.596] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 367, - "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 368, - "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 369, - "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 370, - "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 371, - "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 372, - "content": "[05Apr2024 11:10:33.597] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 373, - "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 374, - "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 375, - "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 376, - "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 377, - "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 378, - "content": "[05Apr2024 11:10:33.598] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 379, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 380, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 381, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 382, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 383, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 384, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 385, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 386, - "content": "[05Apr2024 11:10:33.599] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 387, - "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 388, - "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 389, - "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 390, - "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 391, - "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 392, - "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 393, - "content": "[05Apr2024 11:10:33.600] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 394, - "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 395, - "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 396, - "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 397, - "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 398, - "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 399, - "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 400, - "content": "[05Apr2024 11:10:33.601] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 401, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 402, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 403, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 404, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 405, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 406, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 407, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 408, - "content": "[05Apr2024 11:10:33.602] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 409, - "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 410, - "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 411, - "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 412, - "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 413, - "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 414, - "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 415, - "content": "[05Apr2024 11:10:33.603] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 416, - "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 417, - "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 418, - "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 419, - "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 420, - "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 421, - "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 422, - "content": "[05Apr2024 11:10:33.604] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.605] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 423, - "content": "[05Apr2024 11:10:33.605] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.607] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 424, - "content": "[05Apr2024 11:10:33.607] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.634] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 425, - "content": "[05Apr2024 11:10:33.634] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.635] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 426, - "content": "[05Apr2024 11:10:33.635] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.636] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 427, - "content": "[05Apr2024 11:10:33.636] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.659] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 428, - "content": "[05Apr2024 11:10:33.659] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.660] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 429, - "content": "[05Apr2024 11:10:33.660] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:33.901] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 430, - "content": "[05Apr2024 11:10:33.901] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/EntityType" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:34.315] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 431, - "content": "[05Apr2024 11:10:34.315] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/LiquidBlock" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:34.350] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 432, - "content": "[05Apr2024 11:10:34.350] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/StairBlock" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:34.411] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 433, - "content": "[05Apr2024 11:10:34.411] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/FlowerPotBlock" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:35.179] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 434, - "content": "[05Apr2024 11:10:35.179] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/ItemStack" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:35.821] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 435, - "content": "[05Apr2024 11:10:35.821] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/frog\/Tadpole" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:35.861] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 436, - "content": "[05Apr2024 11:10:35.861] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/BucketItem" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.542] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 437, - "content": "[05Apr2024 11:10:36.542] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Spider" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.588] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 438, - "content": "[05Apr2024 11:10:36.588] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Zombie" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.644] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 439, - "content": "[05Apr2024 11:10:36.644] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/ZombieVillager" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.706] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 440, - "content": "[05Apr2024 11:10:36.706] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.797] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 441, - "content": "[05Apr2024 11:10:36.797] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.813] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 442, - "content": "[05Apr2024 11:10:36.813] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Strider" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.899] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 443, - "content": "[05Apr2024 11:10:36.899] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/npc\/Villager" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:36.992] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 444, - "content": "[05Apr2024 11:10:36.992] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/effect\/MobEffectInstance" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.361] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 445, - "content": "[05Apr2024 11:10:37.361] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/Structure" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.393] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 446, - "content": "[05Apr2024 11:10:37.393] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.405] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 447, - "content": "[05Apr2024 11:10:37.405] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.417] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 448, - "content": "[05Apr2024 11:10:37.417] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.434] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 449, - "content": "[05Apr2024 11:10:37.434] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.515] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 450, - "content": "[05Apr2024 11:10:37.515] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/biome\/Biome" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.815] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", - "lines": [ - { - "number": 451, - "content": "[05Apr2024 11:10:37.815] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.829] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]:", - "lines": [ - { - "number": 452, - "content": "[05Apr2024 11:10:37.829] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]: Using 3 threads for parallel mod-loading" - } - ] - }, - { - "level": 2, - "time": null, - "prefix": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", - "lines": [ - { - "number": 453, - "content": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" - }, - { - "number": 454, - "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load" - }, - { - "number": 455, - "content": "\u00a77We have found 47" - }, - { - "number": 456, - "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" - }, - { - "number": 457, - "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" - }, - { - "number": 458, - "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" - }, - { - "number": 459, - "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" - }, - { - "number": 460, - "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" - }, - { - "number": 461, - "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" - }, - { - "number": 462, - "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" - }, - { - "number": 463, - "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" - }, - { - "number": 464, - "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" - }, - { - "number": 465, - "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" - }, - { - "number": 466, - "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" - }, - { - "number": 467, - "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" - }, - { - "number": 468, - "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" - }, - { - "number": 469, - "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" - }, - { - "number": 470, - "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" - }, - { - "number": 471, - "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" - }, - { - "number": 472, - "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" - }, - { - "number": 473, - "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" - }, - { - "number": 474, - "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" - }, - { - "number": 475, - "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" - }, - { - "number": 476, - "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" - }, - { - "number": 477, - "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" - }, - { - "number": 478, - "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" - }, - { - "number": 479, - "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" - }, - { - "number": 480, - "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" - }, - { - "number": 481, - "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" - }, - { - "number": 482, - "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" - }, - { - "number": 483, - "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 484, - "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 485, - "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 486, - "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 487, - "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 488, - "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 489, - "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 490, - "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.856] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", - "lines": [ - { - "number": 491, - "content": "[05Apr2024 11:10:37.856] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 492, - "content": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 493, - "content": "[05Apr2024 11:10:37.860] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 494, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 495, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 496, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 497, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 498, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 499, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 500, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 501, - "content": "[05Apr2024 11:10:37.861] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 502, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 503, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 504, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 505, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 506, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 507, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 508, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 509, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 510, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 511, - "content": "[05Apr2024 11:10:37.862] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 512, - "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 513, - "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 514, - "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 515, - "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 516, - "content": "[05Apr2024 11:10:37.863] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 517, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 518, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 519, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 520, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 521, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 522, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 523, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 524, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 525, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 526, - "content": "[05Apr2024 11:10:37.864] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 527, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 528, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 529, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 530, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 531, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 532, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 533, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 534, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 535, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 536, - "content": "[05Apr2024 11:10:37.865] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 537, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 538, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 539, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 540, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 541, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 542, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 543, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 544, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 545, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 546, - "content": "[05Apr2024 11:10:37.866] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 547, - "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 548, - "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 549, - "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 550, - "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 551, - "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 552, - "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 553, - "content": "[05Apr2024 11:10:37.867] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 554, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 555, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 556, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 557, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 558, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 559, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 560, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 561, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 562, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 563, - "content": "[05Apr2024 11:10:37.868] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 564, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 565, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 566, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 567, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 568, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 569, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 570, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 571, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 572, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 573, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 574, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 575, - "content": "[05Apr2024 11:10:37.869] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 576, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 577, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 578, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 579, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 580, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 581, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 582, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 583, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 584, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 585, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 586, - "content": "[05Apr2024 11:10:37.870] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 587, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 588, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 589, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 590, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 591, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 592, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 593, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 594, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 595, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 596, - "content": "[05Apr2024 11:10:37.871] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 597, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 598, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 599, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 600, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 601, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 602, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 603, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 604, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 605, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 606, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 607, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 608, - "content": "[05Apr2024 11:10:37.872] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 609, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 610, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 611, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 612, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 613, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 614, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 615, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 616, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 617, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 618, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 619, - "content": "[05Apr2024 11:10:37.873] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 620, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 621, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 622, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 623, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 624, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 625, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 626, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 627, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 628, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 629, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 630, - "content": "[05Apr2024 11:10:37.874] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 631, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 632, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 633, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 634, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 635, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 636, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 637, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 638, - "content": "[05Apr2024 11:10:37.875] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 639, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 640, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 641, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 642, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 643, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 644, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 645, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 646, - "content": "[05Apr2024 11:10:37.876] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 647, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 648, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 649, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 650, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 651, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 652, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 653, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 654, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 655, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 656, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 657, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 658, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 659, - "content": "[05Apr2024 11:10:37.877] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 660, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 661, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 662, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 663, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 664, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 665, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 666, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 667, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 668, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 669, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 670, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 671, - "content": "[05Apr2024 11:10:37.878] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 672, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 673, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 674, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 675, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 676, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 677, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 678, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 679, - "content": "[05Apr2024 11:10:37.879] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 680, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 681, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 682, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 683, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 684, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 685, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 686, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 687, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 688, - "content": "[05Apr2024 11:10:37.880] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 689, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 690, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 691, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 692, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 693, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 694, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 695, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 696, - "content": "[05Apr2024 11:10:37.881] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 697, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 698, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 699, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 700, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 701, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 702, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 703, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 704, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 705, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 706, - "content": "[05Apr2024 11:10:37.882] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 707, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 708, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 709, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 710, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 711, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 712, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 713, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 714, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" + }, { - "number": 715, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 44, + "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" + }, { - "number": 716, - "content": "[05Apr2024 11:10:37.883] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 45, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, { - "number": 717, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 46, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, { - "number": 718, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 47, + "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" + }, { - "number": 719, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 48, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, { - "number": 720, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 49, + "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" + }, { - "number": 721, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 50, + "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, { - "number": 722, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 51, + "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, { - "number": 723, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 52, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, { - "number": 724, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 53, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, { - "number": 725, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 54, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, { - "number": 726, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 55, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, { - "number": 727, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 56, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, { - "number": 728, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 57, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, { - "number": 729, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 58, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, { - "number": 730, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 59, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, { - "number": 731, - "content": "[05Apr2024 11:10:37.884] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.885] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 60, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, { - "number": 732, - "content": "[05Apr2024 11:10:37.885] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.916] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 61, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 733, - "content": "[05Apr2024 11:10:37.916] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 62, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 734, - "content": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 63, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 735, - "content": "[05Apr2024 11:10:37.917] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.921] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 64, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 736, - "content": "[05Apr2024 11:10:37.921] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:10:37.922] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 65, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 66, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 67, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 737, - "content": "[05Apr2024 11:10:37.922] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + "number": 68, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" } ] }, @@ -7859,7 +500,7 @@ "prefix": "[05Apr2024 11:10:37.932] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]:", "lines": [ { - "number": 738, + "number": 69, "content": "[05Apr2024 11:10:37.932] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]: Crash report saved to .\/crash-reports\/crash-2024-04-05_11.10.37-fml.txt" } ] @@ -7870,99 +511,99 @@ "prefix": "[05Apr2024 11:10:37.934] [main\/ERROR] [net.minecraft.server.Main\/FATAL]:", "lines": [ { - "number": 739, + "number": 70, "content": "[05Apr2024 11:10:37.934] [main\/ERROR] [net.minecraft.server.Main\/FATAL]: Failed to start the minecraft server" }, { - "number": 740, + "number": 71, "content": "net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [" }, { - "number": 741, + "number": 72, "content": "\tMod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load" }, { - "number": 742, + "number": 73, "content": "\u00a77We have found 47" }, { - "number": 743, + "number": 74, "content": "]" }, { - "number": 744, + "number": 75, "content": "\tat net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:149) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 745, + "number": 76, "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" }, { - "number": 746, + "number": 77, "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" }, { - "number": 747, + "number": 78, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" }, { - "number": 748, + "number": 79, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" }, { - "number": 749, + "number": 80, "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" }, { - "number": 750, + "number": 81, "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" }, { - "number": 751, + "number": 82, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 752, + "number": 83, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 753, + "number": 84, "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 754, + "number": 85, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 755, + "number": 86, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 756, + "number": 87, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 757, + "number": 88, "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 758, + "number": 89, "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 759, + "number": 90, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 760, + "number": 91, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 761, + "number": 92, "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" }, { - "number": 762, + "number": 93, "content": "" } ] @@ -7979,155 +620,155 @@ "prefix": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", "lines": [ { - "number": 453, + "number": 31, "content": "[05Apr2024 11:10:37.832] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" }, { - "number": 454, + "number": 32, "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load" }, { - "number": 455, + "number": 33, "content": "\u00a77We have found 47" }, { - "number": 456, + "number": 34, "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 457, + "number": 35, "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" }, { - "number": 458, + "number": 36, "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" }, { - "number": 459, + "number": 37, "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" }, { - "number": 460, + "number": 38, "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" }, { - "number": 461, + "number": 39, "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" }, { - "number": 462, + "number": 40, "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" }, { - "number": 463, + "number": 41, "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" }, { - "number": 464, + "number": 42, "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" }, { - "number": 465, + "number": 43, "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" }, { - "number": 466, + "number": 44, "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" }, { - "number": 467, + "number": 45, "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" }, { - "number": 468, + "number": 46, "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" }, { - "number": 469, + "number": 47, "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" }, { - "number": 470, + "number": 48, "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" }, { - "number": 471, + "number": 49, "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" }, { - "number": 472, + "number": 50, "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 473, + "number": 51, "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 474, + "number": 52, "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" }, { - "number": 475, + "number": 53, "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" }, { - "number": 476, + "number": 54, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" }, { - "number": 477, + "number": 55, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" }, { - "number": 478, + "number": 56, "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" }, { - "number": 479, + "number": 57, "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" }, { - "number": 480, + "number": 58, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 481, + "number": 59, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 482, + "number": 60, "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 483, + "number": 61, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 484, + "number": 62, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 485, + "number": 63, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 486, + "number": 64, "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 487, + "number": 65, "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 488, + "number": 66, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 489, + "number": 67, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 490, + "number": 68, "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" } ] diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-above.log b/test/data/Vanilla/Forge/forge-language-provider-version-above.log index 2e961397..7d80484a 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-above.log +++ b/test/data/Vanilla/Forge/forge-language-provider-version-above.log @@ -28,428 +28,6 @@ [05Apr2024 11:10:32.022] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [05Apr2024 11:10:32.026] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [05Apr2024 11:10:32.027] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin -[05Apr2024 11:10:32.036] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@5cdec700 -[05Apr2024 11:10:32.047] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER -[05Apr2024 11:10:32.049] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager -[05Apr2024 11:10:32.050] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:10:32.050] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:10:32.050] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:10:32.051] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:10:32.051] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:10:32.052] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin -[05Apr2024 11:10:32.052] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml -[05Apr2024 11:10:32.052] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories -[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /server -[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /server/mods -[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /server/config -[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /server/config/fml.toml -[05Apr2024 11:10:32.053] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration -[05Apr2024 11:10:32.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile -[05Apr2024 11:10:32.056] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler -[05Apr2024 11:10:32.057] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service -[05Apr2024 11:10:32.066] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] -[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml -[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' -[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} -[05Apr2024 11:10:32.067] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning -[05Apr2024 11:10:32.068] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin -[05Apr2024 11:10:32.068] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin -[05Apr2024 11:10:32.068] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml -[05Apr2024 11:10:32.068] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan -[05Apr2024 11:10:32.076] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] -[05Apr2024 11:10:32.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) -[05Apr2024 11:10:32.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) -[05Apr2024 11:10:32.082] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar -[05Apr2024 11:10:32.109] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} -[05Apr2024 11:10:32.199] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} -[05Apr2024 11:10:32.200] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar -[05Apr2024 11:10:32.200] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:10:32.201] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar -[05Apr2024 11:10:32.201] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:10:32.202] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar -[05Apr2024 11:10:32.202] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:10:32.203] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar -[05Apr2024 11:10:32.203] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:10:32.227] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar -[05Apr2024 11:10:32.228] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} -[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information. -[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information. -[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information. -[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:10:32.236] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:10:32.254] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! -[05Apr2024 11:10:32.256] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} -[05Apr2024 11:10:32.257] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraft/server/1.20.1-20230612.114412/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] -[05Apr2024 11:10:32.258] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar -[05Apr2024 11:10:32.259] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} -[05Apr2024 11:10:32.259] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] -[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js -[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js -[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js -[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js -[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js -[05Apr2024 11:10:32.282] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js -[05Apr2024 11:10:32.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js -[05Apr2024 11:10:32.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js -[05Apr2024 11:10:32.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar -[05Apr2024 11:10:32.284] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} -[05Apr2024 11:10:32.284] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/mods/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[48,)]] -[05Apr2024 11:10:32.284] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml -[05Apr2024 11:10:32.292] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers -[05Apr2024 11:10:32.292] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 -[05Apr2024 11:10:32.293] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 -[05Apr2024 11:10:32.293] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 -[05Apr2024 11:10:32.294] [main/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider/LOADING]: Missing language javafml version [48,) wanted by ironchest-1.20.2-14.5.7.jar, found 47 -[05Apr2024 11:10:32.297] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] -[05Apr2024 11:10:32.297] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft -[05Apr2024 11:10:32.297] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge -[05Apr2024 11:10:32.298] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional) -[05Apr2024 11:10:32.298] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) -[05Apr2024 11:10:32.581] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers -[05Apr2024 11:10:32.581] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin -[05Apr2024 11:10:32.582] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin -[05Apr2024 11:10:32.582] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml -[05Apr2024 11:10:32.582] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers -[05Apr2024 11:10:32.582] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js -[05Apr2024 11:10:32.773] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:10:32.774] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js -[05Apr2024 11:10:32.820] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:10:32.821] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js -[05Apr2024 11:10:32.874] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:10:32.874] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js -[05Apr2024 11:10:32.923] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:10:32.930] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} -[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} -[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} -[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1de0641b to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} -[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@68b734a8 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} -[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1a464fa3 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} -[05Apr2024 11:10:32.931] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4215e133 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5ccb85d6 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@d88f893 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} -[05Apr2024 11:10:32.932] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} -[05Apr2024 11:10:32.933] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} -[05Apr2024 11:10:32.934] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} -[05Apr2024 11:10:32.934] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@259b85d6 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} -[05Apr2024 11:10:32.934] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml -[05Apr2024 11:10:33.301] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) -[05Apr2024 11:10:33.302] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: inject() running with 3 agents -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[05Apr2024 11:10:33.303] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] -[05Apr2024 11:10:33.303] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui] -[05Apr2024 11:10:33.323] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out -[05Apr2024 11:10:33.324] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] -[05Apr2024 11:10:33.385] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework -[05Apr2024 11:10:33.387] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple -[05Apr2024 11:10:33.387] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 -[05Apr2024 11:10:33.517] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1 -[05Apr2024 11:10:33.517] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 -[05Apr2024 11:10:33.547] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:10:33.555] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:10:33.558] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/stat -[05Apr2024 11:10:33.567] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:10:33.567] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:10:33.568] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:10:33.568] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:10:33.568] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity -[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:10:33.569] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity -[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:10:33.570] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity -[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity -[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:10:33.571] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity -[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:10:33.572] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity -[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:10:33.573] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity -[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity -[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:10:33.574] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:10:33.575] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity -[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity -[05Apr2024 11:10:33.576] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity -[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:10:33.577] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity -[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:10:33.578] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity -[05Apr2024 11:10:33.579] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:10:33.579] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity -[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:10:33.580] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity -[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:10:33.581] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity -[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:10:33.582] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:10:33.583] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity -[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:10:33.584] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity -[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity -[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:10:33.585] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:10:33.586] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity -[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity -[05Apr2024 11:10:33.587] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:10:33.588] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity -[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:10:33.589] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:10:33.590] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity -[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:10:33.591] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity -[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity -[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:10:33.592] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity -[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:10:33.593] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity -[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:10:33.594] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity -[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:10:33.595] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity -[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:10:33.596] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity -[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:10:33.597] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity -[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:10:33.598] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:10:33.599] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity -[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:10:33.600] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity -[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity -[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:10:33.601] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:10:33.602] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity -[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity -[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:10:33.603] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity -[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:10:33.604] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:10:33.605] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity -[05Apr2024 11:10:33.607] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo -[05Apr2024 11:10:33.634] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:10:33.635] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1 -[05Apr2024 11:10:33.636] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 -[05Apr2024 11:10:33.659] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[05Apr2024 11:10:33.660] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[05Apr2024 11:10:33.901] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType -[05Apr2024 11:10:34.315] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock -[05Apr2024 11:10:34.350] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock -[05Apr2024 11:10:34.411] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock -[05Apr2024 11:10:35.179] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack -[05Apr2024 11:10:35.821] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole -[05Apr2024 11:10:35.861] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem -[05Apr2024 11:10:36.542] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider -[05Apr2024 11:10:36.588] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie -[05Apr2024 11:10:36.644] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager -[05Apr2024 11:10:36.706] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal -[05Apr2024 11:10:36.797] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal -[05Apr2024 11:10:36.813] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider -[05Apr2024 11:10:36.899] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager -[05Apr2024 11:10:36.992] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance -[05Apr2024 11:10:37.361] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure -[05Apr2024 11:10:37.393] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece -[05Apr2024 11:10:37.405] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece -[05Apr2024 11:10:37.417] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece -[05Apr2024 11:10:37.434] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece -[05Apr2024 11:10:37.515] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome -[05Apr2024 11:10:37.815] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 -[05Apr2024 11:10:37.829] [main/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 3 threads for parallel mod-loading [05Apr2024 11:10:37.832] [main/FATAL] [net.minecraftforge.fml.ModLoader/CORE]: Error during pre-loading phase net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:48 or above to load §7We have found 47 @@ -488,253 +66,6 @@ net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] -[05Apr2024 11:10:37.856] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 -[05Apr2024 11:10:37.860] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:10:37.860] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:10:37.861] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:10:37.862] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity -[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:10:37.863] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:10:37.864] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:10:37.865] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:10:37.866] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity -[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity -[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:10:37.867] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:10:37.868] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:10:37.869] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:10:37.870] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:10:37.871] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:10:37.872] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:10:37.873] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:10:37.874] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:10:37.875] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:10:37.876] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:10:37.877] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:10:37.878] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:10:37.879] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:10:37.880] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:10:37.881] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:10:37.882] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:10:37.883] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:10:37.884] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity -[05Apr2024 11:10:37.885] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo -[05Apr2024 11:10:37.916] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:10:37.917] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@63f6bed1 -[05Apr2024 11:10:37.917] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 -[05Apr2024 11:10:37.921] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[05Apr2024 11:10:37.922] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo [05Apr2024 11:10:37.932] [main/FATAL] [net.minecraftforge.server.loading.ServerModLoader/]: Crash report saved to ./crash-reports/crash-2024-04-05_11.10.37-fml.txt [05Apr2024 11:10:37.934] [main/ERROR] [net.minecraft.server.Main/FATAL]: Failed to start the minecraft server net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [ diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-between.json b/test/data/Vanilla/Forge/forge-language-provider-version-between.json index 4f087937..3b292dfe 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-between.json +++ b/test/data/Vanilla/Forge/forge-language-provider-version-between.json @@ -305,7551 +305,170 @@ { "level": 7, "time": null, - "prefix": "[05Apr2024 11:46:48.021] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "prefix": "[05Apr2024 11:46:53.241] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]:", "lines": [ { "number": 28, - "content": "[05Apr2024 11:46:48.021] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Configuring option handling for services" + "content": "[05Apr2024 11:46:53.241] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]: Using 3 threads for parallel mod-loading" } ] }, { - "level": 7, + "level": 2, "time": null, - "prefix": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", + "prefix": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", "lines": [ { "number": 29, - "content": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services initializing" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ + "content": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" + }, { "number": 30, - "content": "[05Apr2024 11:46:48.025] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.035] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load" + }, { "number": 31, - "content": "[05Apr2024 11:46:48.035] [main\/DEBUG] [mixin\/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1fd14d74" - } - ] - }, - { - "level": 6, - "time": null, - "prefix": "[05Apr2024 11:46:48.048] [main\/INFO] [mixin\/]:", - "lines": [ + "content": "\u00a77We have found 47" + }, { "number": 32, - "content": "[05Apr2024 11:46:48.048] [main\/INFO] [mixin\/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:\/server\/libraries\/org\/spongepowered\/mixin\/0.8.5\/mixin-0.8.5.jar%2365!\/ Service=ModLauncher Env=SERVER" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, { "number": 33, - "content": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]: Initialising Mixin Platform Manager" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" + }, { "number": 34, - "content": "[05Apr2024 11:46:48.051] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" + }, { "number": 35, - "content": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, { "number": 36, - "content": "[05Apr2024 11:46:48.052] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, { "number": 37, - "content": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]:", - "lines": [ + "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" + }, { "number": 38, - "content": "[05Apr2024 11:46:48.053] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ + "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" + }, { "number": 39, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, { "number": 40, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ + "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" + }, { "number": 41, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Setting up basic FML game directories" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ - { - "number": 42, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path GAMEDIR is \/server" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ - { - "number": 43, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path MODSDIR is \/server\/mods" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ - { - "number": 44, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path CONFIGDIR is \/server\/config" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]:", - "lines": [ - { - "number": 45, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLPaths\/CORE]: Path FMLCONFIG is \/server\/config\/fml.toml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 46, - "content": "[05Apr2024 11:46:48.055] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading configuration" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 47, - "content": "[05Apr2024 11:46:48.057] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing ModFile" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 48, - "content": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Preparing launch handler" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", - "lines": [ - { - "number": 49, - "content": "[05Apr2024 11:46:48.059] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Using forgeserver as launch service" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]:", - "lines": [ - { - "number": 50, - "content": "[05Apr2024 11:46:48.068] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLLoader\/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.069] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 51, - "content": "[05Apr2024 11:46:48.069] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 52, - "content": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Current naming domain is 'srg'" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 53, - "content": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler\/MODLAUNCHER]: Identified name mapping providers {}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 54, - "content": "[05Apr2024 11:46:48.070] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services begin scanning" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 55, - "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 56, - "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 57, - "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Beginning scan trigger - transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.071] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 58, - "content": "[05Apr2024 11:46:48.071] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Initiating mod scan" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]:", - "lines": [ - { - "number": 59, - "content": "[05Apr2024 11:46:48.078] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler\/CORE]: Found mod coordinates from lists: []" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.080] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", - "lines": [ - { - "number": 60, - "content": "[05Apr2024 11:46:48.080] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.081] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]:", - "lines": [ - { - "number": 61, - "content": "[05Apr2024 11:46:48.081] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer\/CORE]: Found Dependency Locators : (JarInJar:null)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.085] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 62, - "content": "[05Apr2024 11:46:48.085] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.113] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 63, - "content": "[05Apr2024 11:46:48.113] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.209] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 64, - "content": "[05Apr2024 11:46:48.209] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.211] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 65, - "content": "[05Apr2024 11:46:48.211] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:46:48.211] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 66, - "content": "[05Apr2024 11:46:48.211] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/fmlcore\/1.20.1-47.2.0\/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.212] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 67, - "content": "[05Apr2024 11:46:48.212] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:46:48.212] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 68, - "content": "[05Apr2024 11:46:48.212] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/javafmllanguage\/1.20.1-47.2.0\/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.213] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 69, - "content": "[05Apr2024 11:46:48.213] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:46:48.213] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 70, - "content": "[05Apr2024 11:46:48.213] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/lowcodelanguage\/1.20.1-47.2.0\/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.214] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 71, - "content": "[05Apr2024 11:46:48.214] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar" - } - ] - }, - { - "level": 4, - "time": null, - "prefix": "[05Apr2024 11:46:48.214] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 72, - "content": "[05Apr2024 11:46:48.214] [main\/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Mod file \/server\/libraries\/net\/minecraftforge\/mclanguage\/1.20.1-47.2.0\/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.234] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 73, - "content": "[05Apr2024 11:46:48.234] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.235] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 74, - "content": "[05Apr2024 11:46:48.235] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 75, - "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 76, - "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 77, - "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 78, - "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 79, - "content": "[05Apr2024 11:46:48.244] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 80, - "content": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]:", - "lines": [ - { - "number": 81, - "content": "[05Apr2024 11:46:48.245] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator\/]: Failed to load resource META-INF\/jarjar\/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information." - } - ] - }, - { - "level": 6, - "time": null, - "prefix": "[05Apr2024 11:46:48.265] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]:", - "lines": [ - { - "number": 82, - "content": "[05Apr2024 11:46:48.265] [main\/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator\/]: No dependencies to load found. Skipping!" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.267] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 83, - "content": "[05Apr2024 11:46:48.267] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.268] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 84, - "content": "[05Apr2024 11:46:48.268] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraft\/server\/1.20.1-20230612.114412\/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.269] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 85, - "content": "[05Apr2024 11:46:48.269] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 86, - "content": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 87, - "content": "[05Apr2024 11:46:48.270] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/libraries\/net\/minecraftforge\/forge\/1.20.1-47.2.0\/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.294] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 88, - "content": "[05Apr2024 11:46:48.294] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_method with Javascript path coremods\/field_to_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 89, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod field_to_instanceof with Javascript path coremods\/field_to_instanceof.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 90, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod add_bouncer_method with Javascript path coremods\/add_bouncer_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 91, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Found coremod method_redirector with Javascript path coremods\/method_redirector.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 92, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 93, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/field_to_instanceof.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 94, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/add_bouncer_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 95, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Found coremod coremods\/method_redirector.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]:", - "lines": [ - { - "number": 96, - "content": "[05Apr2024 11:46:48.295] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser\/LOADING]: Considering mod file candidate \/server\/mods\/ironchest-1.20.2-14.5.7.jar" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]:", - "lines": [ - { - "number": 97, - "content": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo\/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]:", - "lines": [ - { - "number": 98, - "content": "[05Apr2024 11:46:48.296] [main\/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile\/LOADING]: Loading mod file \/server\/mods\/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[45,46)]]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.297] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 99, - "content": "[05Apr2024 11:46:48.297] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: End scan trigger - transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 100, - "content": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found 3 language providers" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 101, - "content": "[05Apr2024 11:46:48.307] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider minecraft, version 1.0" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 102, - "content": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider lowcodefml, version 47" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]:", - "lines": [ - { - "number": 103, - "content": "[05Apr2024 11:46:48.308] [main\/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/CORE]: Found language provider javafml, version 47" - } - ] - }, - { - "level": 3, - "time": null, - "prefix": "[05Apr2024 11:46:48.309] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]:", - "lines": [ - { - "number": 104, - "content": "[05Apr2024 11:46:48.309] [main\/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider\/LOADING]: Missing language javafml version [45,46) wanted by ironchest-1.20.2-14.5.7.jar, found 47" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", - "lines": [ - { - "number": 105, - "content": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Configured system mods: [minecraft, forge]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", - "lines": [ - { - "number": 106, - "content": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: minecraft" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]:", - "lines": [ - { - "number": 107, - "content": "[05Apr2024 11:46:48.312] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/]: Found system mod: forge" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.313] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", - "lines": [ - { - "number": 108, - "content": "[05Apr2024 11:46:48.313] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.314] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]:", - "lines": [ - { - "number": 109, - "content": "[05Apr2024 11:46:48.314] [main\/DEBUG] [net.minecraftforge.fml.loading.ModSorter\/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 110, - "content": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler\/MODLAUNCHER]: Transformation services loading transformers" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 111, - "content": "[05Apr2024 11:46:48.564] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 112, - "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service mixin" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 113, - "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initializing transformers for transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]:", - "lines": [ - { - "number": 114, - "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider\/CORE]: Loading coremod transformers" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 115, - "content": "[05Apr2024 11:46:48.565] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 116, - "content": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 117, - "content": "[05Apr2024 11:46:48.688] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/field_to_instanceof.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 118, - "content": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 119, - "content": "[05Apr2024 11:46:48.764] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/add_bouncer_method.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 120, - "content": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 121, - "content": "[05Apr2024 11:46:48.789] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: Loading CoreMod from coremods\/method_redirector.js" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.854] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]:", - "lines": [ - { - "number": 122, - "content": "[05Apr2024 11:46:48.854] [main\/DEBUG] [net.minecraftforge.coremod.CoreModEngine\/COREMOD]: CoreMod loaded successfully" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.860] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 123, - "content": "[05Apr2024 11:46:48.860] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6b4fc2d1 to Target : CLASS {Lnet\/minecraft\/world\/level\/biome\/Biome;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 124, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5a484ce1 to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/Structure;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 125, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet\/minecraft\/world\/effect\/MobEffectInstance;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 126, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2ffe243f to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/LiquidBlock;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 127, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@58ae402b to Target : CLASS {Lnet\/minecraft\/world\/item\/BucketItem;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 128, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4099209b to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/StairBlock;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 129, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@43ac0a68 to Target : CLASS {Lnet\/minecraft\/world\/level\/block\/FlowerPotBlock;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 130, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1dad01fe to Target : CLASS {Lnet\/minecraft\/world\/item\/ItemStack;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 131, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet\/minecraft\/network\/play\/client\/CClientSettingsPacket;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 132, - "content": "[05Apr2024 11:46:48.861] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/CatSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 133, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 134, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 135, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/server\/commands\/SummonCommand;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 136, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/EntityType;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 137, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/NaturalSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 138, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/ZombieVillager;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 139, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 140, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 141, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Spider;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 142, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/server\/commands\/RaidCommand;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 143, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/animal\/frog\/Tadpole;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 144, - "content": "[05Apr2024 11:46:48.862] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Strider;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 145, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PatrolSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 146, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/templatesystem\/StructureTemplate;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 147, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/PhantomSpawner;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 148, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/ai\/village\/VillageSiege;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 149, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 150, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 151, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/monster\/Zombie;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 152, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/npc\/Villager;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]:", - "lines": [ - { - "number": 153, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformStore\/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet\/minecraft\/world\/entity\/raid\/Raid;} {} {V}" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]:", - "lines": [ - { - "number": 154, - "content": "[05Apr2024 11:46:48.863] [main\/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator\/MODLAUNCHER]: Initialized transformers for transformation service fml" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 155, - "content": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 156, - "content": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 157, - "content": "[05Apr2024 11:46:49.120] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 158, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 159, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 160, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 161, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 162, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 163, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Adding mixin platform agents for container SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 164, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 165, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 166, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 167, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge)" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 168, - "content": "[05Apr2024 11:46:49.121] [main\/DEBUG] [mixin\/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 169, - "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: inject() running with 3 agents" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 170, - "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 171, - "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 172, - "content": "[05Apr2024 11:46:49.122] [main\/DEBUG] [mixin\/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)]" - } - ] - }, - { - "level": 6, - "time": null, - "prefix": "[05Apr2024 11:46:49.122] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]:", - "lines": [ - { - "number": 173, - "content": "[05Apr2024 11:46:49.122] [main\/INFO] [cpw.mods.modlauncher.LaunchServiceHandler\/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.158] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 174, - "content": "[05Apr2024 11:46:49.158] [main\/DEBUG] [mixin\/]: Error cleaning class output directory: .mixin.out" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.159] [main\/DEBUG] [mixin\/]:", - "lines": [ - { - "number": 175, - "content": "[05Apr2024 11:46:49.159] [main\/DEBUG] [mixin\/]: Preparing mixins for MixinEnvironment[DEFAULT]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.200] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]:", - "lines": [ - { - "number": 176, - "content": "[05Apr2024 11:46:49.200] [main\/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory\/]: Using SLF4J as the default logging framework" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", - "lines": [ - { - "number": 177, - "content": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.level: simple" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]:", - "lines": [ - { - "number": 178, - "content": "[05Apr2024 11:46:49.202] [main\/DEBUG] [io.netty.util.ResourceLeakDetector\/]: -Dio.netty.leakDetection.targetRecords: 4" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.336] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 179, - "content": "[05Apr2024 11:46:49.336] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.337] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 180, - "content": "[05Apr2024 11:46:49.337] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.369] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 181, - "content": "[05Apr2024 11:46:49.369] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.370] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 182, - "content": "[05Apr2024 11:46:49.370] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.372] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 183, - "content": "[05Apr2024 11:46:49.372] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/stat" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 184, - "content": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 185, - "content": "[05Apr2024 11:46:49.380] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 186, - "content": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 187, - "content": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 188, - "content": "[05Apr2024 11:46:49.381] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 189, - "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 190, - "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 191, - "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 192, - "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 193, - "content": "[05Apr2024 11:46:49.382] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 194, - "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 195, - "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 196, - "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 197, - "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 198, - "content": "[05Apr2024 11:46:49.383] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 199, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 200, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 201, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 202, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 203, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 204, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 205, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 206, - "content": "[05Apr2024 11:46:49.384] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 207, - "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 208, - "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 209, - "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 210, - "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 211, - "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 212, - "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 213, - "content": "[05Apr2024 11:46:49.385] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 214, - "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 215, - "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 216, - "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 217, - "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 218, - "content": "[05Apr2024 11:46:49.386] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 219, - "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 220, - "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 221, - "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 222, - "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 223, - "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 224, - "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 225, - "content": "[05Apr2024 11:46:49.387] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 226, - "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 227, - "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 228, - "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 229, - "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 230, - "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 231, - "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 232, - "content": "[05Apr2024 11:46:49.388] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 233, - "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 234, - "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 235, - "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 236, - "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 237, - "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 238, - "content": "[05Apr2024 11:46:49.389] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 239, - "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 240, - "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 241, - "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 242, - "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 243, - "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 244, - "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 245, - "content": "[05Apr2024 11:46:49.390] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 246, - "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 247, - "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 248, - "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 249, - "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 250, - "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 251, - "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 252, - "content": "[05Apr2024 11:46:49.391] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 253, - "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 254, - "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 255, - "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 256, - "content": "[05Apr2024 11:46:49.392] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 257, - "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 258, - "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 259, - "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 260, - "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 261, - "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 262, - "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 263, - "content": "[05Apr2024 11:46:49.393] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 264, - "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 265, - "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 266, - "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 267, - "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 268, - "content": "[05Apr2024 11:46:49.394] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 269, - "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 270, - "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 271, - "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 272, - "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 273, - "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 274, - "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 275, - "content": "[05Apr2024 11:46:49.395] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 276, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 277, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 278, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 279, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 280, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 281, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 282, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 283, - "content": "[05Apr2024 11:46:49.396] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 284, - "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 285, - "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 286, - "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 287, - "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 288, - "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 289, - "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 290, - "content": "[05Apr2024 11:46:49.397] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 291, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 292, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 293, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 294, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 295, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 296, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 297, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 298, - "content": "[05Apr2024 11:46:49.398] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 299, - "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 300, - "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 301, - "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 302, - "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 303, - "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 304, - "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 305, - "content": "[05Apr2024 11:46:49.399] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 306, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 307, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 308, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 309, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 310, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 311, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 312, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 313, - "content": "[05Apr2024 11:46:49.400] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 314, - "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 315, - "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 316, - "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 317, - "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 318, - "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 319, - "content": "[05Apr2024 11:46:49.401] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 320, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 321, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 322, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 323, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 324, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 325, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 326, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 327, - "content": "[05Apr2024 11:46:49.402] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 328, - "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 329, - "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 330, - "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 331, - "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 332, - "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 333, - "content": "[05Apr2024 11:46:49.403] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 334, - "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 335, - "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 336, - "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 337, - "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 338, - "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 339, - "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 340, - "content": "[05Apr2024 11:46:49.404] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 341, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 342, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 343, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 344, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 345, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 346, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 347, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 348, - "content": "[05Apr2024 11:46:49.405] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 349, - "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 350, - "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 351, - "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 352, - "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 353, - "content": "[05Apr2024 11:46:49.406] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 354, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 355, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 356, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 357, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 358, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 359, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 360, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 361, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 362, - "content": "[05Apr2024 11:46:49.407] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 363, - "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 364, - "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 365, - "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 366, - "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 367, - "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 368, - "content": "[05Apr2024 11:46:49.408] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 369, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 370, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 371, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 372, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 373, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 374, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 375, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 376, - "content": "[05Apr2024 11:46:49.409] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 377, - "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 378, - "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 379, - "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 380, - "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 381, - "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 382, - "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 383, - "content": "[05Apr2024 11:46:49.410] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 384, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 385, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 386, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 387, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 388, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 389, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 390, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 391, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 392, - "content": "[05Apr2024 11:46:49.411] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 393, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 394, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 395, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 396, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 397, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 398, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 399, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 400, - "content": "[05Apr2024 11:46:49.412] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 401, - "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 402, - "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 403, - "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 404, - "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 405, - "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 406, - "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 407, - "content": "[05Apr2024 11:46:49.413] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 408, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 409, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 410, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 411, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 412, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 413, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 414, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 415, - "content": "[05Apr2024 11:46:49.414] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 416, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 417, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 418, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 419, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 420, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 421, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 422, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 423, - "content": "[05Apr2024 11:46:49.415] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.417] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 424, - "content": "[05Apr2024 11:46:49.417] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.425] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 425, - "content": "[05Apr2024 11:46:49.425] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 426, - "content": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 427, - "content": "[05Apr2024 11:46:49.427] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.435] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 428, - "content": "[05Apr2024 11:46:49.435] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.436] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 429, - "content": "[05Apr2024 11:46:49.436] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.618] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 430, - "content": "[05Apr2024 11:46:49.618] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/EntityType" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.962] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 431, - "content": "[05Apr2024 11:46:49.962] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/LiquidBlock" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:49.993] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 432, - "content": "[05Apr2024 11:46:49.993] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/StairBlock" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:50.047] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 433, - "content": "[05Apr2024 11:46:50.047] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/block\/FlowerPotBlock" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:50.665] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 434, - "content": "[05Apr2024 11:46:50.665] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/ItemStack" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:51.306] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 435, - "content": "[05Apr2024 11:46:51.306] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/frog\/Tadpole" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:51.345] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 436, - "content": "[05Apr2024 11:46:51.345] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/item\/BucketItem" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:51.916] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 437, - "content": "[05Apr2024 11:46:51.916] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Spider" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.027] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 438, - "content": "[05Apr2024 11:46:52.027] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Zombie" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.096] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 439, - "content": "[05Apr2024 11:46:52.096] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/ZombieVillager" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.155] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 440, - "content": "[05Apr2024 11:46:52.155] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Evoker$EvokerSummonSpellGoal" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.241] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 441, - "content": "[05Apr2024 11:46:52.241] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/animal\/horse\/SkeletonTrapGoal" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.255] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 442, - "content": "[05Apr2024 11:46:52.255] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/monster\/Strider" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.333] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 443, - "content": "[05Apr2024 11:46:52.333] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/entity\/npc\/Villager" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.419] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 444, - "content": "[05Apr2024 11:46:52.419] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/effect\/MobEffectInstance" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.789] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 445, - "content": "[05Apr2024 11:46:52.789] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/Structure" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.820] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 446, - "content": "[05Apr2024 11:46:52.820] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanRuinPieces$OceanRuinPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.833] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 447, - "content": "[05Apr2024 11:46:52.833] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/SwampHutPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.846] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 448, - "content": "[05Apr2024 11:46:52.846] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/OceanMonumentPieces$OceanMonumentPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.865] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 449, - "content": "[05Apr2024 11:46:52.865] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/levelgen\/structure\/structures\/WoodlandMansionPieces$WoodlandMansionPiece" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:52.951] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]:", - "lines": [ - { - "number": 450, - "content": "[05Apr2024 11:46:52.951] [main\/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer\/COREMOD]: Transforming net\/minecraft\/world\/level\/biome\/Biome" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.225] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", - "lines": [ - { - "number": 451, - "content": "[05Apr2024 11:46:53.225] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.241] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]:", - "lines": [ - { - "number": 452, - "content": "[05Apr2024 11:46:53.241] [main\/DEBUG] [net.minecraftforge.fml.ModWorkManager\/LOADING]: Using 3 threads for parallel mod-loading" - } - ] - }, - { - "level": 2, - "time": null, - "prefix": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", - "lines": [ - { - "number": 453, - "content": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" - }, - { - "number": 454, - "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load" - }, - { - "number": 455, - "content": "\u00a77We have found 47" - }, - { - "number": 456, - "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" - }, - { - "number": 457, - "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" - }, - { - "number": 458, - "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" - }, - { - "number": 459, - "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" - }, - { - "number": 460, - "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" - }, - { - "number": 461, - "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" - }, - { - "number": 462, - "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" - }, - { - "number": 463, - "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" - }, - { - "number": 464, - "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" - }, - { - "number": 465, - "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" - }, - { - "number": 466, - "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" - }, - { - "number": 467, - "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" - }, - { - "number": 468, - "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" - }, - { - "number": 469, - "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" - }, - { - "number": 470, - "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" - }, - { - "number": 471, - "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" - }, - { - "number": 472, - "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" - }, - { - "number": 473, - "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" - }, - { - "number": 474, - "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" - }, - { - "number": 475, - "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" - }, - { - "number": 476, - "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" - }, - { - "number": 477, - "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" - }, - { - "number": 478, - "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" - }, - { - "number": 479, - "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" - }, - { - "number": 480, - "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" - }, - { - "number": 481, - "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" - }, - { - "number": 482, - "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" - }, - { - "number": 483, - "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 484, - "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 485, - "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 486, - "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 487, - "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 488, - "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 489, - "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" - }, - { - "number": 490, - "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.271] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]:", - "lines": [ - { - "number": 491, - "content": "[05Apr2024 11:46:53.271] [main\/DEBUG] [net.minecraftforge.common.ForgeI18n\/CORE]: Loading I18N data entries: 6430" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 492, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 493, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 494, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 495, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 496, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu0\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 497, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 498, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 499, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 500, - "content": "[05Apr2024 11:46:53.275] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 501, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu1\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 502, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 503, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 504, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 505, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 506, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu10\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 507, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 508, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 509, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 510, - "content": "[05Apr2024 11:46:53.276] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 511, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu11\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 512, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 513, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 514, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 515, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 516, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu12\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 517, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 518, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 519, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 520, - "content": "[05Apr2024 11:46:53.277] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 521, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu13\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 522, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 523, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 524, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 525, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 526, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu14\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 527, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 528, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 529, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 530, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 531, - "content": "[05Apr2024 11:46:53.278] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu15\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 532, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 533, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 534, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 535, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 536, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu16\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 537, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 538, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 539, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 540, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 541, - "content": "[05Apr2024 11:46:53.279] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu17\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 542, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 543, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 544, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 545, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 546, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu18\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 547, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 548, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 549, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 550, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 551, - "content": "[05Apr2024 11:46:53.280] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu19\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 552, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 553, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 554, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 555, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 556, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu2\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 557, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 558, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 559, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 560, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 561, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu20\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 562, - "content": "[05Apr2024 11:46:53.281] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 563, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 564, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 565, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 566, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu21\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 567, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 568, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 569, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 570, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 571, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu22\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 572, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 573, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 574, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 575, - "content": "[05Apr2024 11:46:53.282] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 576, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu23\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 577, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 578, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 579, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 580, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 581, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu24\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 582, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 583, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 584, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 585, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 586, - "content": "[05Apr2024 11:46:53.283] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu25\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 587, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 588, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 589, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 590, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 591, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu26\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 592, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 593, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 594, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 595, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 596, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu27\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 597, - "content": "[05Apr2024 11:46:53.284] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 598, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 599, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 600, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 601, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu28\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 602, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 603, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 604, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 605, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 606, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu29\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 607, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 608, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 609, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 610, - "content": "[05Apr2024 11:46:53.285] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 611, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu3\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 612, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 613, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 614, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 615, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 616, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu30\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 617, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 618, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 619, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 620, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 621, - "content": "[05Apr2024 11:46:53.286] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu31\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 622, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 623, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 624, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 625, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 626, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu32\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 627, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 628, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 629, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 630, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 631, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu33\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 632, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 633, - "content": "[05Apr2024 11:46:53.287] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 634, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 635, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 636, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu34\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 637, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 638, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 639, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 640, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 641, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu35\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 642, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 643, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 644, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 645, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 646, - "content": "[05Apr2024 11:46:53.288] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu36\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 647, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 648, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 649, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 650, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 651, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu37\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 652, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 653, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 654, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 655, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 656, - "content": "[05Apr2024 11:46:53.289] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu38\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 657, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 658, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 659, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 660, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 661, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu39\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 662, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 663, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 664, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 665, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 666, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu4\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 667, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 668, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 669, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 670, - "content": "[05Apr2024 11:46:53.290] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 671, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu40\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 672, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 673, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 674, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 675, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 676, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu41\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 677, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 678, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 679, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 680, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 681, - "content": "[05Apr2024 11:46:53.291] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu42\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 682, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 683, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 684, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 685, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 686, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu43\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 687, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 688, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 689, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 690, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 691, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu44\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 692, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 693, - "content": "[05Apr2024 11:46:53.292] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 694, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 695, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 696, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu45\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 697, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 698, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 699, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 700, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 701, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu46\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 702, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 703, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 704, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 705, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 706, - "content": "[05Apr2024 11:46:53.293] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu47\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 707, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 708, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 709, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 710, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 711, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu5\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 712, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 713, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ - { - "number": 714, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" + }, { - "number": 715, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 42, + "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" + }, { - "number": 716, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu6\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 43, + "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" + }, { - "number": 717, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 44, + "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" + }, { - "number": 718, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 45, + "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" + }, { - "number": 719, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 46, + "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" + }, { - "number": 720, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 47, + "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" + }, { - "number": 721, - "content": "[05Apr2024 11:46:53.294] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu7\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 48, + "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, { - "number": 722, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 49, + "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" + }, { - "number": 723, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 50, + "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" + }, { - "number": 724, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 51, + "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" + }, { - "number": 725, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 52, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" + }, { - "number": 726, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu8\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 53, + "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" + }, { - "number": 727, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 54, + "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" + }, { - "number": 728, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/core_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 55, + "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" + }, { - "number": 729, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 56, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, { - "number": 730, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/topology\/physical_package_id" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 57, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, { - "number": 731, - "content": "[05Apr2024 11:46:53.295] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/sys\/devices\/system\/cpu\/cpu9\/cpu_capacity" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.296] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 58, + "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" + }, { - "number": 732, - "content": "[05Apr2024 11:46:53.296] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/cpuinfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.325] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 59, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 733, - "content": "[05Apr2024 11:46:53.325] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/self\/auxv" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 60, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 734, - "content": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 61, + "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 735, - "content": "[05Apr2024 11:46:53.326] [main\/DEBUG] [oshi.util.FileUtil\/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.330] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 62, + "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 736, - "content": "[05Apr2024 11:46:53.330] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" - } - ] - }, - { - "level": 7, - "time": null, - "prefix": "[05Apr2024 11:46:53.331] [main\/DEBUG] [oshi.util.FileUtil\/]:", - "lines": [ + "number": 63, + "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 64, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, + { + "number": 65, + "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" + }, { - "number": 737, - "content": "[05Apr2024 11:46:53.331] [main\/DEBUG] [oshi.util.FileUtil\/]: Reading file \/proc\/meminfo" + "number": 66, + "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" } ] }, @@ -7859,7 +478,7 @@ "prefix": "[05Apr2024 11:46:53.339] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]:", "lines": [ { - "number": 738, + "number": 67, "content": "[05Apr2024 11:46:53.339] [main\/FATAL] [net.minecraftforge.server.loading.ServerModLoader\/]: Crash report saved to .\/crash-reports\/crash-2024-04-05_11.46.53-fml.txt" } ] @@ -7870,99 +489,99 @@ "prefix": "[05Apr2024 11:46:53.340] [main\/ERROR] [net.minecraft.server.Main\/FATAL]:", "lines": [ { - "number": 739, + "number": 68, "content": "[05Apr2024 11:46:53.340] [main\/ERROR] [net.minecraft.server.Main\/FATAL]: Failed to start the minecraft server" }, { - "number": 740, + "number": 69, "content": "net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [" }, { - "number": 741, + "number": 70, "content": "\tMod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load" }, { - "number": 742, + "number": 71, "content": "\u00a77We have found 47" }, { - "number": 743, + "number": 72, "content": "]" }, { - "number": 744, + "number": 73, "content": "\tat net.minecraftforge.fml.ModLoader.gatherAndInitializeMods(ModLoader.java:149) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 745, + "number": 74, "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" }, { - "number": 746, + "number": 75, "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" }, { - "number": 747, + "number": 76, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" }, { - "number": 748, + "number": 77, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" }, { - "number": 749, + "number": 78, "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" }, { - "number": 750, + "number": 79, "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" }, { - "number": 751, + "number": 80, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 752, + "number": 81, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 753, + "number": 82, "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 754, + "number": 83, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 755, + "number": 84, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 756, + "number": 85, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 757, + "number": 86, "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 758, + "number": 87, "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 759, + "number": 88, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 760, + "number": 89, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 761, + "number": 90, "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" }, { - "number": 762, + "number": 91, "content": "" } ] @@ -7979,155 +598,155 @@ "prefix": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]:", "lines": [ { - "number": 453, + "number": 29, "content": "[05Apr2024 11:46:53.244] [main\/FATAL] [net.minecraftforge.fml.ModLoader\/CORE]: Error during pre-loading phase" }, { - "number": 454, + "number": 30, "content": "net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load" }, { - "number": 455, + "number": 31, "content": "\u00a77We have found 47" }, { - "number": 456, + "number": 32, "content": "\tat net.minecraftforge.fml.ModLoadingException.lambda$fromEarlyException$0(ModLoadingException.java:50) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 457, + "number": 33, "content": "\tat java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) ~[?:?]" }, { - "number": 458, + "number": 34, "content": "\tat java.util.AbstractList$RandomAccessSpliterator.forEachRemaining(AbstractList.java:720) ~[?:?]" }, { - "number": 459, + "number": 35, "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" }, { - "number": 460, + "number": 36, "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" }, { - "number": 461, + "number": 37, "content": "\tat java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) ~[?:?]" }, { - "number": 462, + "number": 38, "content": "\tat java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) ~[?:?]" }, { - "number": 463, + "number": 39, "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" }, { - "number": 464, + "number": 40, "content": "\tat java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:596) ~[?:?]" }, { - "number": 465, + "number": 41, "content": "\tat java.util.stream.ReferencePipeline$7$1.accept(ReferencePipeline.java:276) ~[?:?]" }, { - "number": 466, + "number": 42, "content": "\tat java.util.ArrayList$ArrayListSpliterator.forEachRemaining(ArrayList.java:1625) ~[?:?]" }, { - "number": 467, + "number": 43, "content": "\tat java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:509) ~[?:?]" }, { - "number": 468, + "number": 44, "content": "\tat java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:499) ~[?:?]" }, { - "number": 469, + "number": 45, "content": "\tat java.util.stream.ReduceOps$ReduceOp.evaluateSequential(ReduceOps.java:921) ~[?:?]" }, { - "number": 470, + "number": 46, "content": "\tat java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) ~[?:?]" }, { - "number": 471, + "number": 47, "content": "\tat java.util.stream.ReferencePipeline.collect(ReferencePipeline.java:682) ~[?:?]" }, { - "number": 472, + "number": 48, "content": "\tat net.minecraftforge.fml.ModLoader.(ModLoader.java:96) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 473, + "number": 49, "content": "\tat net.minecraftforge.fml.ModLoader.get(ModLoader.java:128) ~[fmlcore-1.20.1-47.2.0.jar%23104!\/:?]" }, { - "number": 474, + "number": 50, "content": "\tat net.minecraftforge.server.loading.ServerModLoader.load(ServerModLoader.java:30) ~[forge-1.20.1-47.2.0-universal.jar%23108!\/:?]" }, { - "number": 475, + "number": 51, "content": "\tat net.minecraft.server.Main.main(Main.java:125) ~[server-1.20.1-20230612.114412-srg.jar%23103!\/:?]" }, { - "number": 476, + "number": 52, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]" }, { - "number": 477, + "number": 53, "content": "\tat jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]" }, { - "number": 478, + "number": 54, "content": "\tat jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]" }, { - "number": 479, + "number": 55, "content": "\tat java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]" }, { - "number": 480, + "number": 56, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 481, + "number": 57, "content": "\tat net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 482, + "number": 58, "content": "\tat net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) ~[fmlloader-1.20.1-47.2.0.jar%2369!\/:?]" }, { - "number": 483, + "number": 59, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 484, + "number": 60, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 485, + "number": 61, "content": "\tat cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 486, + "number": 62, "content": "\tat cpw.mods.modlauncher.Launcher.run(Launcher.java:108) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 487, + "number": 63, "content": "\tat cpw.mods.modlauncher.Launcher.main(Launcher.java:78) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 488, + "number": 64, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 489, + "number": 65, "content": "\tat cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!\/:?]" }, { - "number": 490, + "number": 66, "content": "\tat cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?]" } ] diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-between.log b/test/data/Vanilla/Forge/forge-language-provider-version-between.log index 71583d9f..60442066 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-between.log +++ b/test/data/Vanilla/Forge/forge-language-provider-version-between.log @@ -25,430 +25,6 @@ [05Apr2024 11:46:48.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [05Apr2024 11:46:48.020] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 [05Apr2024 11:46:48.020] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml -[05Apr2024 11:46:48.021] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services -[05Apr2024 11:46:48.025] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing -[05Apr2024 11:46:48.025] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin -[05Apr2024 11:46:48.035] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1fd14d74 -[05Apr2024 11:46:48.048] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/server/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER -[05Apr2024 11:46:48.051] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager -[05Apr2024 11:46:48.051] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:46:48.052] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:46:48.052] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:46:48.053] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:46:48.053] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) -[05Apr2024 11:46:48.055] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin -[05Apr2024 11:46:48.055] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml -[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories -[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /server -[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /server/mods -[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /server/config -[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /server/config/fml.toml -[05Apr2024 11:46:48.055] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration -[05Apr2024 11:46:48.057] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile -[05Apr2024 11:46:48.059] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler -[05Apr2024 11:46:48.059] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service -[05Apr2024 11:46:48.068] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.2.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] -[05Apr2024 11:46:48.069] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml -[05Apr2024 11:46:48.070] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' -[05Apr2024 11:46:48.070] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} -[05Apr2024 11:46:48.070] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning -[05Apr2024 11:46:48.071] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin -[05Apr2024 11:46:48.071] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin -[05Apr2024 11:46:48.071] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml -[05Apr2024 11:46:48.071] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan -[05Apr2024 11:46:48.078] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] -[05Apr2024 11:46:48.080] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) -[05Apr2024 11:46:48.081] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) -[05Apr2024 11:46:48.085] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar -[05Apr2024 11:46:48.113] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} -[05Apr2024 11:46:48.209] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} -[05Apr2024 11:46:48.211] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar -[05Apr2024 11:46:48.211] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/fmlcore/1.20.1-47.2.0/fmlcore-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:46:48.212] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar -[05Apr2024 11:46:48.212] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.2.0/javafmllanguage-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:46:48.213] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar -[05Apr2024 11:46:48.213] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.2.0/lowcodelanguage-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:46:48.214] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar -[05Apr2024 11:46:48.214] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /server/libraries/net/minecraftforge/mclanguage/1.20.1-47.2.0/mclanguage-1.20.1-47.2.0.jar is missing mods.toml file -[05Apr2024 11:46:48.234] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar -[05Apr2024 11:46:48.235] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} -[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from server-1.20.1-20230612.114412-srg.jar, it does not contain dependency information. -[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.20.1-47.2.0-universal.jar, it does not contain dependency information. -[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from ironchest-1.20.2-14.5.7.jar, it does not contain dependency information. -[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:46:48.244] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:46:48.245] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:46:48.245] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.20.1-47.2.0.jar, it does not contain dependency information. -[05Apr2024 11:46:48.265] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! -[05Apr2024 11:46:48.267] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file server-1.20.1-20230612.114412-srg.jar with {minecraft} mods - versions {1.20.1} -[05Apr2024 11:46:48.268] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraft/server/1.20.1-20230612.114412/server-1.20.1-20230612.114412-srg.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] -[05Apr2024 11:46:48.269] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar -[05Apr2024 11:46:48.270] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.2.0-universal.jar with {forge} mods - versions {47.2.0} -[05Apr2024 11:46:48.270] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/libraries/net/minecraftforge/forge/1.20.1-47.2.0/forge-1.20.1-47.2.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] -[05Apr2024 11:46:48.294] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js -[05Apr2024 11:46:48.295] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /server/mods/ironchest-1.20.2-14.5.7.jar -[05Apr2024 11:46:48.296] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file ironchest-1.20.2-14.5.7.jar with {ironchest} mods - versions {1.20.2-14.5.7} -[05Apr2024 11:46:48.296] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /server/mods/ironchest-1.20.2-14.5.7.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[45,46)]] -[05Apr2024 11:46:48.297] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml -[05Apr2024 11:46:48.307] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers -[05Apr2024 11:46:48.307] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 -[05Apr2024 11:46:48.308] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 -[05Apr2024 11:46:48.308] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 -[05Apr2024 11:46:48.309] [main/ERROR] [net.minecraftforge.fml.loading.LanguageLoadingProvider/LOADING]: Missing language javafml version [45,46) wanted by ironchest-1.20.2-14.5.7.jar, found 47 -[05Apr2024 11:46:48.312] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] -[05Apr2024 11:46:48.312] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft -[05Apr2024 11:46:48.312] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge -[05Apr2024 11:46:48.313] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional) -[05Apr2024 11:46:48.314] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) -[05Apr2024 11:46:48.564] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers -[05Apr2024 11:46:48.564] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin -[05Apr2024 11:46:48.565] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin -[05Apr2024 11:46:48.565] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml -[05Apr2024 11:46:48.565] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers -[05Apr2024 11:46:48.565] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js -[05Apr2024 11:46:48.688] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:46:48.688] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js -[05Apr2024 11:46:48.764] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:46:48.764] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js -[05Apr2024 11:46:48.789] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:46:48.789] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js -[05Apr2024 11:46:48.854] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully -[05Apr2024 11:46:48.860] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6b4fc2d1 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5a484ce1 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@e91b4f4 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2ffe243f to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@58ae402b to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@4099209b to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@43ac0a68 to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@1dad01fe to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3728a578 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} -[05Apr2024 11:46:48.861] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} -[05Apr2024 11:46:48.862] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3e3cd6fe to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} -[05Apr2024 11:46:48.863] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml -[05Apr2024 11:46:49.120] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[05Apr2024 11:46:49.120] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[05Apr2024 11:46:49.120] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) -[05Apr2024 11:46:49.121] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] -[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: inject() running with 3 agents -[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] -[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] -[05Apr2024 11:46:49.122] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] -[05Apr2024 11:46:49.122] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui] -[05Apr2024 11:46:49.158] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out -[05Apr2024 11:46:49.159] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] -[05Apr2024 11:46:49.200] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework -[05Apr2024 11:46:49.202] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple -[05Apr2024 11:46:49.202] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 -[05Apr2024 11:46:49.336] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab -[05Apr2024 11:46:49.337] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 -[05Apr2024 11:46:49.369] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:46:49.370] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:46:49.372] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/stat -[05Apr2024 11:46:49.380] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:46:49.380] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:46:49.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:46:49.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:46:49.381] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity -[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:46:49.382] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity -[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:46:49.383] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:46:49.384] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity -[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:46:49.385] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity -[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:46:49.386] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity -[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity -[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:46:49.387] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity -[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:46:49.388] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity -[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:46:49.389] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity -[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity -[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:46:49.390] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity -[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:46:49.391] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity -[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:46:49.392] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity -[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:46:49.393] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity -[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:46:49.394] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity -[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity -[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:46:49.395] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:46:49.396] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity -[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity -[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:46:49.397] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:46:49.398] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity -[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity -[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:46:49.399] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:46:49.400] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity -[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity -[05Apr2024 11:46:49.401] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:46:49.402] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity -[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:46:49.403] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity -[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity -[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:46:49.404] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:46:49.405] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity -[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:46:49.406] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:46:49.407] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity -[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:46:49.408] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:46:49.409] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity -[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:46:49.410] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:46:49.411] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:46:49.412] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity -[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:46:49.413] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:46:49.414] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:46:49.415] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity -[05Apr2024 11:46:49.417] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo -[05Apr2024 11:46:49.425] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:46:49.427] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab -[05Apr2024 11:46:49.427] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 -[05Apr2024 11:46:49.435] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[05Apr2024 11:46:49.436] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[05Apr2024 11:46:49.618] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType -[05Apr2024 11:46:49.962] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock -[05Apr2024 11:46:49.993] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock -[05Apr2024 11:46:50.047] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock -[05Apr2024 11:46:50.665] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack -[05Apr2024 11:46:51.306] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole -[05Apr2024 11:46:51.345] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem -[05Apr2024 11:46:51.916] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider -[05Apr2024 11:46:52.027] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie -[05Apr2024 11:46:52.096] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager -[05Apr2024 11:46:52.155] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal -[05Apr2024 11:46:52.241] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal -[05Apr2024 11:46:52.255] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider -[05Apr2024 11:46:52.333] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager -[05Apr2024 11:46:52.419] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance -[05Apr2024 11:46:52.789] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure -[05Apr2024 11:46:52.820] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece -[05Apr2024 11:46:52.833] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece -[05Apr2024 11:46:52.846] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece -[05Apr2024 11:46:52.865] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece -[05Apr2024 11:46:52.951] [main/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome -[05Apr2024 11:46:53.225] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 [05Apr2024 11:46:53.241] [main/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 3 threads for parallel mod-loading [05Apr2024 11:46:53.244] [main/FATAL] [net.minecraftforge.fml.ModLoader/CORE]: Error during pre-loading phase net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar needs language provider javafml:45 or above, and below 46 to load @@ -488,253 +64,6 @@ net.minecraftforge.fml.ModLoadingException: Mod File ironchest-1.20.2-14.5.7.jar at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) ~[modlauncher-10.0.9.jar%2355!/:?] at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) ~[modlauncher-10.0.9.jar%2355!/:?] at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) ~[bootstraplauncher-1.1.2.jar:?] -[05Apr2024 11:46:53.271] [main/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/core_id -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/topology/physical_package_id -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu0/cpu_capacity -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/core_id -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:46:53.275] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/topology/physical_package_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu1/cpu_capacity -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/core_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/topology/physical_package_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu10/cpu_capacity -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/core_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:46:53.276] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/topology/physical_package_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu11/cpu_capacity -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/core_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/topology/physical_package_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu12/cpu_capacity -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/core_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:46:53.277] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/topology/physical_package_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu13/cpu_capacity -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/core_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/topology/physical_package_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu14/cpu_capacity -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/core_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/topology/physical_package_id -[05Apr2024 11:46:53.278] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu15/cpu_capacity -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/core_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/topology/physical_package_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu16/cpu_capacity -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/core_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/topology/physical_package_id -[05Apr2024 11:46:53.279] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu17/cpu_capacity -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/core_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/topology/physical_package_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu18/cpu_capacity -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/core_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/topology/physical_package_id -[05Apr2024 11:46:53.280] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu19/cpu_capacity -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/core_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/topology/physical_package_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu2/cpu_capacity -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/core_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/topology/physical_package_id -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu20/cpu_capacity -[05Apr2024 11:46:53.281] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/core_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/topology/physical_package_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu21/cpu_capacity -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/core_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/topology/physical_package_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu22/cpu_capacity -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/core_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:46:53.282] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/topology/physical_package_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu23/cpu_capacity -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/core_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/topology/physical_package_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu24/cpu_capacity -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/core_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/topology/physical_package_id -[05Apr2024 11:46:53.283] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu25/cpu_capacity -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/core_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/topology/physical_package_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu26/cpu_capacity -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/core_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/topology/physical_package_id -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu27/cpu_capacity -[05Apr2024 11:46:53.284] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/core_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/topology/physical_package_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu28/cpu_capacity -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/core_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/topology/physical_package_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu29/cpu_capacity -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/core_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:46:53.285] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/topology/physical_package_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu3/cpu_capacity -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/core_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/topology/physical_package_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu30/cpu_capacity -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/core_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/topology/physical_package_id -[05Apr2024 11:46:53.286] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu31/cpu_capacity -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/core_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/topology/physical_package_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu32/cpu_capacity -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/core_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/topology/physical_package_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu33/cpu_capacity -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:46:53.287] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/core_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/topology/physical_package_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu34/cpu_capacity -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/core_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/topology/physical_package_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu35/cpu_capacity -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/core_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/topology/physical_package_id -[05Apr2024 11:46:53.288] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu36/cpu_capacity -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/core_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/topology/physical_package_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu37/cpu_capacity -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/core_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/topology/physical_package_id -[05Apr2024 11:46:53.289] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu38/cpu_capacity -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/core_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/topology/physical_package_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu39/cpu_capacity -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/core_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/topology/physical_package_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu4/cpu_capacity -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/core_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:46:53.290] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/topology/physical_package_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu40/cpu_capacity -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/core_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/topology/physical_package_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu41/cpu_capacity -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/core_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/topology/physical_package_id -[05Apr2024 11:46:53.291] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu42/cpu_capacity -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/core_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/topology/physical_package_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu43/cpu_capacity -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/core_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/topology/physical_package_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu44/cpu_capacity -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:46:53.292] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/core_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/topology/physical_package_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu45/cpu_capacity -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/core_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/topology/physical_package_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu46/cpu_capacity -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/core_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/topology/physical_package_id -[05Apr2024 11:46:53.293] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu47/cpu_capacity -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/core_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/topology/physical_package_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu5/cpu_capacity -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/core_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/topology/physical_package_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu6/cpu_capacity -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/core_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/topology/physical_package_id -[05Apr2024 11:46:53.294] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu7/cpu_capacity -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/core_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/topology/physical_package_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu8/cpu_capacity -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/core_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/topology/physical_package_id -[05Apr2024 11:46:53.295] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /sys/devices/system/cpu/cpu9/cpu_capacity -[05Apr2024 11:46:53.296] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/cpuinfo -[05Apr2024 11:46:53.325] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/self/auxv -[05Apr2024 11:46:53.326] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@664212ab -[05Apr2024 11:46:53.326] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader jdk.internal.loader.ClassLoaders$AppClassLoader@5a07e868 -[05Apr2024 11:46:53.330] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo -[05Apr2024 11:46:53.331] [main/DEBUG] [oshi.util.FileUtil/]: Reading file /proc/meminfo [05Apr2024 11:46:53.339] [main/FATAL] [net.minecraftforge.server.loading.ServerModLoader/]: Crash report saved to ./crash-reports/crash-2024-04-05_11.46.53-fml.txt [05Apr2024 11:46:53.340] [main/ERROR] [net.minecraft.server.Main/FATAL]: Failed to start the minecraft server net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [ From 269f5ce4ecde1ba3984f1d175e39ba3881fdd43c Mon Sep 17 00:00:00 2001 From: Kurt Thiemann Date: Fri, 5 Apr 2024 17:23:55 +0200 Subject: [PATCH 3/4] update language variable --- lang/en.json | 2 +- src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php | 3 +-- .../Vanilla/Forge/forge-language-provider-version-above.json | 2 +- .../Vanilla/Forge/forge-language-provider-version-between.json | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/lang/en.json b/lang/en.json index e3b87359..c952f2dc 100644 --- a/lang/en.json +++ b/lang/en.json @@ -84,5 +84,5 @@ "type-content": "Content Log", "type-crash-report": "Crash Report", "type-unknown": "Unknown Log", - "forge-language-provider-version-problem": "The mod '{{mod-file}}' requires {{language-provider}} {{required-version}}, but {{found-version}} is installed." + "forge-language-provider-version-problem": "The mod '{{mod-file}}' requires '{{required-version}}', but {{found-version}} is installed." } diff --git a/src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php b/src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php index bf581c4a..eb0f2b9f 100644 --- a/src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php +++ b/src/Analysis/Problem/Forge/LanguageProviderVersionProblem.php @@ -24,8 +24,7 @@ public function getMessage(): string return Translator::getInstance()->getTranslation("forge-language-provider-version-problem", [ "mod-file" => $this->getModName(), - "language-provider" => $provider, - "required-version" => $this->requiredVersion, + "required-version" => $provider . " " . $this->requiredVersion, "found-version" => $this->foundVersion ]); } diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-above.json b/test/data/Vanilla/Forge/forge-language-provider-version-above.json index 95d91d80..f92fe1be 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-above.json +++ b/test/data/Vanilla/Forge/forge-language-provider-version-above.json @@ -612,7 +612,7 @@ "analysis": { "problems": [ { - "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires Forge 48 or above, but 47 is installed.", + "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires 'Forge 48 or above', but 47 is installed.", "counter": 2, "entry": { "level": 2, diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-between.json b/test/data/Vanilla/Forge/forge-language-provider-version-between.json index 3b292dfe..fa201117 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-between.json +++ b/test/data/Vanilla/Forge/forge-language-provider-version-between.json @@ -590,7 +590,7 @@ "analysis": { "problems": [ { - "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires Forge 45 or above, and below 46, but 47 is installed.", + "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires 'Forge 45 or above, and below 46', but 47 is installed.", "counter": 2, "entry": { "level": 2, From ece7cf73fa0076d809e524e24db9716fed411af0 Mon Sep 17 00:00:00 2001 From: Kurt Thiemann Date: Fri, 5 Apr 2024 17:24:57 +0200 Subject: [PATCH 4/4] update language variable --- lang/en.json | 2 +- .../Vanilla/Forge/forge-language-provider-version-above.json | 2 +- .../Vanilla/Forge/forge-language-provider-version-between.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/en.json b/lang/en.json index c952f2dc..7af52d2c 100644 --- a/lang/en.json +++ b/lang/en.json @@ -84,5 +84,5 @@ "type-content": "Content Log", "type-crash-report": "Crash Report", "type-unknown": "Unknown Log", - "forge-language-provider-version-problem": "The mod '{{mod-file}}' requires '{{required-version}}', but {{found-version}} is installed." + "forge-language-provider-version-problem": "The mod '{{mod-file}}' requires '{{required-version}}', but '{{found-version}}' is installed." } diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-above.json b/test/data/Vanilla/Forge/forge-language-provider-version-above.json index f92fe1be..4d10d5b3 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-above.json +++ b/test/data/Vanilla/Forge/forge-language-provider-version-above.json @@ -612,7 +612,7 @@ "analysis": { "problems": [ { - "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires 'Forge 48 or above', but 47 is installed.", + "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires 'Forge 48 or above', but '47' is installed.", "counter": 2, "entry": { "level": 2, diff --git a/test/data/Vanilla/Forge/forge-language-provider-version-between.json b/test/data/Vanilla/Forge/forge-language-provider-version-between.json index fa201117..7b94d5ac 100644 --- a/test/data/Vanilla/Forge/forge-language-provider-version-between.json +++ b/test/data/Vanilla/Forge/forge-language-provider-version-between.json @@ -590,7 +590,7 @@ "analysis": { "problems": [ { - "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires 'Forge 45 or above, and below 46', but 47 is installed.", + "message": "The mod 'ironchest-1.20.2-14.5.7.jar' requires 'Forge 45 or above, and below 46', but '47' is installed.", "counter": 2, "entry": { "level": 2,