game-ci / unity-builder

Build Unity projects for different platforms
https://github.com/marketplace/actions/unity-builder
MIT License
858 stars 253 forks source link

Android Build Fails on Unity 2021.3.20 #547

Closed felipeViana closed 1 year ago

felipeViana commented 1 year ago

Bug description

The build on Github Actions always fail on game-ci/unity-builder@v2

How to reproduce

Trigger an Android build no Github Actions

Expected behavior

Success build

Additional details In the logs indicate that the build has 2 errors and 1 warning but I need help identifying those. My main guess for the error is this part:

Your mono runtime and class libraries are out of sync.
The out of sync library is: /opt/unity/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-linux/System.dll

I couldn't post full log because it's too long for this, so I'll post other parts that seems to point to errors:

WorkingDir: /github/workspace
ExitCode: 4 Duration: 0s38ms
[             ] Require frontend run.  Library/Bee/1300b0aE.dag couldn't be loaded
Starting: /opt/unity/Editor/Data/Tools/netcorerun/netcorerun "/opt/unity/Editor/Data/Tools/BuildPipeline/ScriptCompilationBuildProgram.exe" "Library/Bee/1300b0aE.dag.json" "Library/Bee/1300b0aE-inputdata.json" "Library/Bee/buildprogram0.traceevents"

[Licensing::Module] Error: Access token is unavailable; failed to update

UnityException: Can not sign the application
Unable to sign the application; please provide passwords!

My config file:

name: Build project

on: [push]

jobs:
  buildForAllSupportedPlatforms:
    name: Build for ${{ matrix.targetPlatform }}
    runs-on: ubuntu-latest
    strategy:
      fail-fast: true
      matrix:
        targetPlatform:
          - Android # Build an Android .apk standalone app.
    steps:
      - uses: actions/checkout@v2
        with:
          fetch-depth: 0
          lfs: true
      - uses: actions/cache@v2
        with:
          path: Library
          key: Library-${{ matrix.targetPlatform }}
          restore-keys: Library-
      - uses: game-ci/unity-builder@v2
        env:
          UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
          UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
          UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
        with:
          targetPlatform: ${{ matrix.targetPlatform }}
          versioning: Semantic

      - uses: actions/upload-artifact@v2
        with:
          name: Build-${{ matrix.targetPlatform }}
          path: build/${{ matrix.targetPlatform }}
felipeViana commented 1 year ago

since I can't post full log, I'm sending at least the end of it:

2023-07-17T15:43:42.4179559Z    Summary:
2023-07-17T15:43:42.4180184Z        Imports: total=1 (actual=1, local cache=0, cache server=0)
2023-07-17T15:43:42.4180953Z        Asset DB Process Time: managed=0 ms, native=850 ms
2023-07-17T15:43:42.4181642Z        Asset DB Callback time: managed=361 ms, native=148 ms
2023-07-17T15:43:42.4182410Z        Scripting: domain reloads=0, domain reload time=0 ms, compile time=0 ms, other=0 ms
2023-07-17T15:43:42.4183245Z        Project Asset Count: scripts=10385, non-scripts=7361
2023-07-17T15:43:42.4183955Z        Asset File Changes: new=0, changed=1, moved=0, deleted=0
2023-07-17T15:43:42.4184565Z        Scan Filter Count: 1
2023-07-17T15:43:42.4185172Z    InvokeBeforeRefreshCallbacks: 0.003ms
2023-07-17T15:43:42.4185823Z    ApplyChangesToAssetFolders: 0.105ms
2023-07-17T15:43:42.4186384Z    Scan: 638.429ms
2023-07-17T15:43:42.4186953Z    OnSourceAssetsModified: 0.442ms
2023-07-17T15:43:42.4187605Z    InitializeImportedAssetsSnapshot: 75.730ms
2023-07-17T15:43:42.4188260Z    GetAllGuidsForCategorization: 1.737ms
2023-07-17T15:43:42.4188877Z    CategorizeAssets: 52.550ms
2023-07-17T15:43:42.4189521Z    ImportOutOfDateAssets: 66.150ms (3.929ms without children)
2023-07-17T15:43:42.4190237Z        ImportManagerImport: 56.492ms (53.420ms without children)
2023-07-17T15:43:42.4191045Z            ImportInProcess: 3.013ms
2023-07-17T15:43:42.4191633Z            UpdateCategorizedAssets: 0.060ms
2023-07-17T15:43:42.4192238Z        ReloadImportedAssets: 0.001ms
2023-07-17T15:43:42.4192929Z        EnsureUptoDateAssetsAreRegisteredWithGuidPM: 3.421ms
2023-07-17T15:43:42.4193633Z        InitializingProgressBar: 0.005ms
2023-07-17T15:43:42.4194357Z        PostProcessAllAssetNotificationsAddChangedAssets: 1.418ms
2023-07-17T15:43:42.4195073Z        OnDemandSchedulerStart: 0.883ms
2023-07-17T15:43:42.4195675Z    ReloadSourceAssets: 1.861ms
2023-07-17T15:43:42.4196263Z    UnloadImportedAssets: 1.425ms
2023-07-17T15:43:42.4197095Z    PostProcessAllAssets: 502.977ms
2023-07-17T15:43:42.4197649Z    Hotreload: 6.171ms
2023-07-17T15:43:42.4198285Z    GatherAllCurrentPrimaryArtifactRevisions: 0.802ms
2023-07-17T15:43:42.4198956Z    UnloadStreamsBegin: 0.144ms
2023-07-17T15:43:42.4199787Z    LoadedImportedAssetsSnapshotReleaseGCHandles: 4.008ms
2023-07-17T15:43:42.4200622Z    GetLoadedSourceAssetsIDs: 2.853ms
2023-07-17T15:43:42.4201278Z    GetLoadedSourceAssetsSnapshot: 3.893ms
2023-07-17T15:43:42.4201931Z    PersistCurrentRevisions: 1.007ms
2023-07-17T15:43:42.4202533Z    UnloadStreamsEnd: 0.134ms
2023-07-17T15:43:42.4203084Z    Untracked: 502.675ms
2023-07-17T15:43:42.4776749Z Registering precompiled user dll's ...
2023-07-17T15:43:42.4974495Z Registered in 0.019891 seconds.
2023-07-17T15:43:48.6942410Z Start importing Assets/AddressableAssetsData/link.xml using Guid(0acbd6b10ae18df34a34735d9891b1b8) Importer(-1,00000000000000000000000000000000) Refreshing native plugins compatible for Editor in 6.67 ms, found 9 plugins.
2023-07-17T15:43:48.6943432Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:48.6998449Z Refreshing native plugins compatible for Editor in 5.78 ms, found 9 plugins.
2023-07-17T15:43:48.6999315Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:48.7080126Z Refreshing native plugins compatible for Editor in 7.56 ms, found 9 plugins.
2023-07-17T15:43:48.7085066Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:48.7153115Z Refreshing native plugins compatible for Editor in 5.34 ms, found 9 plugins.
2023-07-17T15:43:48.7153884Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:48.7215243Z Refreshing native plugins compatible for Editor in 6.25 ms, found 9 plugins.
2023-07-17T15:43:48.7220124Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:51.4513696Z  -> (artifact id: 'dcd0481cbfbcf9aca28c11b78e9cb9d4') in 8.928006 seconds 
2023-07-17T15:43:51.6677970Z Refreshing native plugins compatible for Editor in 3.84 ms, found 9 plugins.
2023-07-17T15:43:51.6684488Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:51.6700405Z Asset Pipeline Refresh: Total: 9.247 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions)
2023-07-17T15:43:51.6701150Z    Summary:
2023-07-17T15:43:51.6702459Z        Imports: total=1 (actual=1, local cache=0, cache server=0)
2023-07-17T15:43:51.6703196Z        Asset DB Process Time: managed=1 ms, native=9215 ms
2023-07-17T15:43:51.6703918Z        Asset DB Callback time: managed=2 ms, native=27 ms
2023-07-17T15:43:51.6705206Z        Scripting: domain reloads=0, domain reload time=0 ms, compile time=0 ms, other=0 ms
2023-07-17T15:43:51.6706725Z        Project Asset Count: scripts=10385, non-scripts=7362
2023-07-17T15:43:51.6707452Z        Asset File Changes: new=1, changed=1, moved=0, deleted=0
2023-07-17T15:43:51.6708080Z        Scan Filter Count: 3
2023-07-17T15:43:51.6708691Z    InvokeBeforeRefreshCallbacks: 0.001ms
2023-07-17T15:43:51.6709351Z    ApplyChangesToAssetFolders: 0.088ms
2023-07-17T15:43:51.6709929Z    Scan: 1.415ms
2023-07-17T15:43:51.6711064Z    OnSourceAssetsModified: 0.222ms
2023-07-17T15:43:51.6711721Z    InitializeImportedAssetsSnapshot: 59.838ms
2023-07-17T15:43:51.6712908Z    GetAllGuidsForCategorization: 0.878ms
2023-07-17T15:43:51.6713508Z    CategorizeAssets: 24.832ms
2023-07-17T15:43:51.6714160Z    ImportOutOfDateAssets: 9133.283ms (4.776ms without children)
2023-07-17T15:43:51.6714890Z        ImportManagerImport: 9122.807ms (192.509ms without children)
2023-07-17T15:43:51.6715548Z            ImportInProcess: 8930.192ms
2023-07-17T15:43:51.6716132Z            UpdateCategorizedAssets: 0.106ms
2023-07-17T15:43:51.6717364Z        ReloadImportedAssets: 0.001ms
2023-07-17T15:43:51.6718060Z        EnsureUptoDateAssetsAreRegisteredWithGuidPM: 3.331ms
2023-07-17T15:43:51.6719498Z        InitializingProgressBar: 0.004ms
2023-07-17T15:43:51.6720267Z        PostProcessAllAssetNotificationsAddChangedAssets: 1.429ms
2023-07-17T15:43:51.6722080Z        OnDemandSchedulerStart: 0.934ms
2023-07-17T15:43:51.6722683Z    ReloadSourceAssets: 1.955ms
2023-07-17T15:43:51.6723283Z    UnloadImportedAssets: 1.684ms
2023-07-17T15:43:51.6724152Z    PostProcessAllAssets: 23.985ms
2023-07-17T15:43:51.6725339Z    Hotreload: 6.075ms
2023-07-17T15:43:51.6725994Z    GatherAllCurrentPrimaryArtifactRevisions: 0.807ms
2023-07-17T15:43:51.6726664Z    UnloadStreamsBegin: 2.611ms
2023-07-17T15:43:51.6728280Z    LoadedImportedAssetsSnapshotReleaseGCHandles: 4.367ms
2023-07-17T15:43:51.6729752Z    GetLoadedSourceAssetsIDs: 5.957ms
2023-07-17T15:43:51.6730422Z    GetLoadedSourceAssetsSnapshot: 1.885ms
2023-07-17T15:43:51.6731078Z    PersistCurrentRevisions: 1.061ms
2023-07-17T15:43:51.6732438Z    UnloadStreamsEnd: 0.135ms
2023-07-17T15:43:51.6733116Z    Untracked: -0.009ms
2023-07-17T15:43:51.8337241Z [ServicesCore]: To use Unity's dashboard services, you need to link your Unity project to a project ID. To do this, go to Project Settings to select your organization, select your project and then link a project ID. You also need to make sure your organization has access to the required products. Visit https://dashboard.unity3d.com to sign up.
2023-07-17T15:43:51.8338661Z UnityEngine.StackTraceUtility:ExtractStackTrace () (at /home/bokken/build/output/unity/unity/Runtime/Export/Scripting/StackTrace.cs:37)
2023-07-17T15:43:51.8339902Z UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[])
2023-07-17T15:43:51.8340852Z UnityEngine.Logger:LogWarning (string,object)
2023-07-17T15:43:51.8341825Z Unity.Services.Core.Internal.CoreLogger:LogWarning (object) (at Library/PackageCache/com.unity.services.core@1.7.1/Runtime/Core.Internal/Logging/CoreLogger.cs:15)
2023-07-17T15:43:51.8343202Z Unity.Services.Core.Editor.ProjectUnlinkBuildWarning:OnPreprocessBuild (UnityEditor.Build.Reporting.BuildReport) (at Library/PackageCache/com.unity.services.core@1.7.1/Editor/Core/Build/ProjectUnlinkBuildWarning.cs:29)
2023-07-17T15:43:51.8344743Z UnityEditor.Build.BuildPipelineInterfaces/<>c__DisplayClass16_0:<OnBuildPreProcess>b__1 (UnityEditor.Build.IPreprocessBuildWithReport) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline/BuildPipelineInterfaces.cs:436)
2023-07-17T15:43:51.8346944Z UnityEditor.Build.BuildPipelineInterfaces:InvokeCallbackInterfacesPair<UnityEditor.Build.IPreprocessBuild, UnityEditor.Build.IPreprocessBuildWithReport> (System.Collections.Generic.List`1<UnityEditor.Build.IPreprocessBuild>,System.Action`1<UnityEditor.Build.IPreprocessBuild>,System.Collections.Generic.List`1<UnityEditor.Build.IPreprocessBuildWithReport>,System.Action`1<UnityEditor.Build.IPreprocessBuildWithReport>,bool) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline/BuildPipelineInterfaces.cs:402)
2023-07-17T15:43:51.8349033Z UnityEditor.Build.BuildPipelineInterfaces:OnBuildPreProcess (UnityEditor.Build.Reporting.BuildReport) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline/BuildPipelineInterfaces.cs:434)
2023-07-17T15:43:51.8350599Z UnityEditor.BuildPipeline:BuildPlayerInternal (string[],string,string,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget,int,UnityEditor.BuildOptions,string[]) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline.bindings.cs:449)
2023-07-17T15:43:51.8352312Z UnityEditor.BuildPipeline:BuildPlayer (string[],string,string,UnityEditor.BuildTargetGroup,UnityEditor.BuildTarget,int,UnityEditor.BuildOptions,string[]) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline.bindings.cs:348)
2023-07-17T15:43:51.8353725Z UnityEditor.BuildPipeline:BuildPlayer (UnityEditor.BuildPlayerOptions) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline.bindings.cs:322)
2023-07-17T15:43:51.8354774Z UnityBuilderAction.Builder:BuildProject () (at Assets/Editor/Editor/UnityBuilderAction/Builder.cs:71)
2023-07-17T15:43:51.8355268Z 
2023-07-17T15:43:51.8355770Z (Filename: Library/PackageCache/com.unity.services.core@1.7.1/Editor/Core/Build/ProjectUnlinkBuildWarning.cs Line: 29)
2023-07-17T15:43:51.8356306Z 
2023-07-17T15:43:57.1501883Z Refreshing native plugins compatible for Editor in 4.10 ms, found 9 plugins.
2023-07-17T15:43:57.1507449Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:57.1554242Z Refreshing native plugins compatible for Editor in 3.69 ms, found 9 plugins.
2023-07-17T15:43:57.1560192Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:57.1600153Z Refreshing native plugins compatible for Editor in 3.13 ms, found 9 plugins.
2023-07-17T15:43:57.1601659Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:57.1638652Z Refreshing native plugins compatible for Editor in 3.06 ms, found 9 plugins.
2023-07-17T15:43:57.1643940Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:57.1685982Z Refreshing native plugins compatible for Editor in 3.00 ms, found 9 plugins.
2023-07-17T15:43:57.1691028Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:59.1682446Z Registering precompiled user dll's ...
2023-07-17T15:43:59.1887050Z Registered in 0.019701 seconds.
2023-07-17T15:43:59.2721723Z Start importing ProjectSettings/ProjectSettings.asset using Guid(00000000000000004000000000000000) Importer(-1,00000000000000000000000000000000)  -> (artifact id: '79a51a6547e35a5df694e8629d3eaaff') in 0.005548 seconds 
2023-07-17T15:43:59.7837587Z Refreshing native plugins compatible for Editor in 4.21 ms, found 9 plugins.
2023-07-17T15:43:59.7843987Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:43:59.7874081Z Asset Pipeline Refresh: Total: 0.754 seconds - Initiated by StopAssetImportingV2(NoUpdateAssetOptions)
2023-07-17T15:43:59.7874827Z    Summary:
2023-07-17T15:43:59.7875449Z        Imports: total=1 (actual=1, local cache=0, cache server=0)
2023-07-17T15:43:59.7876180Z        Asset DB Process Time: managed=0 ms, native=385 ms
2023-07-17T15:43:59.7876869Z        Asset DB Callback time: managed=331 ms, native=37 ms
2023-07-17T15:43:59.7877639Z        Scripting: domain reloads=0, domain reload time=0 ms, compile time=0 ms, other=0 ms
2023-07-17T15:43:59.7878459Z        Project Asset Count: scripts=10385, non-scripts=7362
2023-07-17T15:43:59.7879244Z        Asset File Changes: new=0, changed=1, moved=0, deleted=0
2023-07-17T15:43:59.7879863Z        Scan Filter Count: 1
2023-07-17T15:43:59.7880471Z    InvokeBeforeRefreshCallbacks: 0.001ms
2023-07-17T15:43:59.7881134Z    ApplyChangesToAssetFolders: 0.088ms
2023-07-17T15:43:59.7881716Z    Scan: 1.844ms
2023-07-17T15:43:59.7882278Z    OnSourceAssetsModified: 0.041ms
2023-07-17T15:43:59.7882939Z    InitializeImportedAssetsSnapshot: 207.874ms
2023-07-17T15:43:59.7883592Z    GetAllGuidsForCategorization: 0.914ms
2023-07-17T15:43:59.7884175Z    CategorizeAssets: 25.240ms
2023-07-17T15:43:59.7884833Z    ImportOutOfDateAssets: 217.144ms (11.011ms without children)
2023-07-17T15:43:59.7885554Z        ImportManagerImport: 200.476ms (193.188ms without children)
2023-07-17T15:43:59.7886193Z            ImportInProcess: 7.264ms
2023-07-17T15:43:59.7886785Z            UpdateCategorizedAssets: 0.024ms
2023-07-17T15:43:59.7887402Z        ReloadImportedAssets: 0.001ms
2023-07-17T15:43:59.7888088Z        EnsureUptoDateAssetsAreRegisteredWithGuidPM: 3.429ms
2023-07-17T15:43:59.7888777Z        InitializingProgressBar: 0.005ms
2023-07-17T15:43:59.7889512Z        PostProcessAllAssetNotificationsAddChangedAssets: 1.421ms
2023-07-17T15:43:59.7890227Z        OnDemandSchedulerStart: 0.801ms
2023-07-17T15:43:59.7890813Z    ReloadSourceAssets: 8.230ms
2023-07-17T15:43:59.7891397Z    UnloadImportedAssets: 2.024ms
2023-07-17T15:43:59.7892001Z    PostProcessAllAssets: 353.302ms
2023-07-17T15:43:59.7892571Z    Hotreload: 15.475ms
2023-07-17T15:43:59.7893224Z    GatherAllCurrentPrimaryArtifactRevisions: 0.782ms
2023-07-17T15:43:59.7893882Z    UnloadStreamsBegin: 25.049ms
2023-07-17T15:43:59.7894554Z    LoadedImportedAssetsSnapshotReleaseGCHandles: 6.829ms
2023-07-17T15:43:59.7895251Z    GetLoadedSourceAssetsIDs: 15.097ms
2023-07-17T15:43:59.7895890Z    GetLoadedSourceAssetsSnapshot: 30.078ms
2023-07-17T15:43:59.7896522Z    PersistCurrentRevisions: 1.024ms
2023-07-17T15:43:59.7897109Z    UnloadStreamsEnd: 0.141ms
2023-07-17T15:43:59.7897650Z    Untracked: 196.282ms
2023-07-17T15:43:59.8198681Z DisplayProgressbar: Checking prerequisites
2023-07-17T15:43:59.8290388Z UnityException: Can not sign the application
2023-07-17T15:43:59.8291327Z Unable to sign the application; please provide passwords!
2023-07-17T15:43:59.8292329Z UnityEditor.BuildPipeline:BuildPlayerInternalNoCheck(String[], String, String, BuildTargetGroup, BuildTarget, Int32, BuildOptions, String[], Boolean)
2023-07-17T15:43:59.8293653Z UnityEditor.BuildPipeline:BuildPlayerInternal(String[], String, String, BuildTargetGroup, BuildTarget, Int32, BuildOptions, String[]) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline.bindings.cs:449)
2023-07-17T15:43:59.8294973Z UnityEditor.BuildPipeline:BuildPlayer(String[], String, String, BuildTargetGroup, BuildTarget, Int32, BuildOptions, String[]) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline.bindings.cs:348)
2023-07-17T15:43:59.8296142Z UnityEditor.BuildPipeline:BuildPlayer(BuildPlayerOptions) (at /home/bokken/build/output/unity/unity/Editor/Mono/BuildPipeline.bindings.cs:322)
2023-07-17T15:43:59.8297134Z UnityBuilderAction.Builder:BuildProject() (at Assets/Editor/Editor/UnityBuilderAction/Builder.cs:71)
2023-07-17T15:43:59.8297647Z 
2023-07-17T15:43:59.8298021Z (Filename: Assets/Editor/Editor/UnityBuilderAction/Builder.cs Line: 71)
2023-07-17T15:43:59.8298439Z 
2023-07-17T15:43:59.8616574Z Unloading 1 Unused Serialized files (Serialized files now loaded: 0)
2023-07-17T15:43:59.9948548Z Unloading 55597 unused Assets / (125.0 MB). Loaded Objects now: 9257.
2023-07-17T15:43:59.9949343Z Memory consumption went from 0.61 GB to 502.7 MB.
2023-07-17T15:44:00.0003508Z Total: 132.255500 ms (FindLiveObjects: 3.458200 ms CreateObjectMapping: 3.646600 ms MarkObjects: 59.432200 ms  DeleteObjects: 65.717000 ms)
2023-07-17T15:44:00.0004045Z 
2023-07-17T15:44:00.0007924Z Build Finished, Result: Failure.
2023-07-17T15:44:00.0252092Z Unloading 0 Unused Serialized files (Serialized files now loaded: 0)
2023-07-17T15:44:00.4452501Z Loaded scene 'Temp/__Backupscenes/0.backup'
2023-07-17T15:44:00.4453178Z    Deserialize:            3.084 ms
2023-07-17T15:44:00.4453774Z    Integration:            421.358 ms
2023-07-17T15:44:00.4454409Z    Integration of assets:  0.003 ms
2023-07-17T15:44:00.4454993Z    Thread Wait Time:       0.013 ms
2023-07-17T15:44:00.4455590Z    Total Operation Time:   424.458 ms
2023-07-17T15:44:00.5069182Z Unloading 0 unused Assets / (319.2 KB). Loaded Objects now: 9257.
2023-07-17T15:44:00.5069951Z Memory consumption went from 419.9 MB to 419.6 MB.
2023-07-17T15:44:00.5074293Z Total: 60.650300 ms (FindLiveObjects: 0.683900 ms CreateObjectMapping: 0.507800 ms MarkObjects: 59.322000 ms  DeleteObjects: 0.135500 ms)
2023-07-17T15:44:00.5074817Z 
2023-07-17T15:44:00.5164153Z 
2023-07-17T15:44:00.5164570Z ###########################
2023-07-17T15:44:00.5165171Z #      Build results      #
2023-07-17T15:44:00.5165739Z ###########################
2023-07-17T15:44:00.5166032Z 
2023-07-17T15:44:00.5166273Z Duration: 00:00:08.3249566
2023-07-17T15:44:00.5166795Z Warnings: 1
2023-07-17T15:44:00.5167288Z Errors: 2
2023-07-17T15:44:00.5167787Z Size: 0 bytes
2023-07-17T15:44:00.5168092Z 
2023-07-17T15:44:00.5202423Z 
2023-07-17T15:44:00.5210016Z Build failed!
2023-07-17T15:44:05.9837129Z Refreshing native plugins compatible for Editor in 58.27 ms, found 9 plugins.
2023-07-17T15:44:05.9837939Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:44:05.9885945Z Refreshing native plugins compatible for Editor in 4.97 ms, found 9 plugins.
2023-07-17T15:44:05.9891591Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:44:05.9934389Z Refreshing native plugins compatible for Editor in 3.44 ms, found 9 plugins.
2023-07-17T15:44:05.9939814Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:44:05.9978656Z Refreshing native plugins compatible for Editor in 3.05 ms, found 9 plugins.
2023-07-17T15:44:05.9984045Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:44:06.0022083Z Refreshing native plugins compatible for Editor in 3.00 ms, found 9 plugins.
2023-07-17T15:44:06.0027527Z Preloading 0 native plugins for Editor in 0.00 ms.
2023-07-17T15:44:08.3059899Z Setting up 1 worker threads for Enlighten.
2023-07-17T15:44:09.6151898Z [Licensing::IpcConnector] License Notification channel disconnected successfully.
2023-07-17T15:44:09.6152906Z [Licensing::IpcConnector] License Client channel disconnected successfully.
2023-07-17T15:44:13.3718144Z AcceleratorClientConnectionCallback - disconnected - :0
2023-07-17T15:44:13.4723683Z Cleanup mono
2023-07-17T15:44:14.2855584Z debugger-agent: Unable to listen on 52
2023-07-17T15:44:14.3256182Z [Performance] Application.InitializeProject                                                                              :        1 samples, Peak.  1.00 ks (1.0x), Avg.  1.00 ks, Total. 1.003 ks (63.1%)
2023-07-17T15:44:14.3257657Z [Performance] Application.PackageManager.StartServer                                                                     :        1 samples, Peak.  1.67 ms (1.0x), Avg.  1.67 ms, Total. 1.669 ms (0.0%)
2023-07-17T15:44:14.3259265Z [Performance] Application.AcquireProjectLock                                                                             :        1 samples, Peak.   867 us (1.0x), Avg.   867 us, Total. 866.9 us (0.0%)
2023-07-17T15:44:14.3262189Z [Performance] Application.InitializeEngineNoGraphics                                                                     :        1 samples, Peak.   353 ms (1.0x), Avg.   353 ms, Total. 352.6 ms (0.0%)
2023-07-17T15:44:14.3263360Z [Performance] Application.PackageManager.Initialize                                                                      :        1 samples, Peak.   314 ms (1.0x), Avg.   314 ms, Total. 313.8 ms (0.0%)
2023-07-17T15:44:14.3264383Z [Performance] CurlRequestCheck                                                                                           :        7 samples, Peak.  49.6 us (3.1x), Avg.  15.9 us, Total. 111.1 us (0.0%)
2023-07-17T15:44:14.3265462Z [Performance] PackageManager::RunRequestSynchronously                                                                    :      782 samples, Peak.   526 us (136.5x), Avg.  3.85 us, Total. 3.013 ms (0.0%)
2023-07-17T15:44:14.3266509Z [Performance] Application.EngineGraphics.Initialize                                                                      :        1 samples, Peak.   376 ms (1.0x), Avg.   376 ms, Total. 376.4 ms (0.0%)
2023-07-17T15:44:14.3267533Z [Performance] Application.GI.Initialize                                                                                  :        1 samples, Peak.  4.45 ms (1.0x), Avg.  4.45 ms, Total. 4.454 ms (0.0%)
2023-07-17T15:44:14.3268578Z [Performance] Application.LoadAllDefaultResourcesFromEditor                                                              :        1 samples, Peak.  3.09 ms (1.0x), Avg.  3.09 ms, Total. 3.087 ms (0.0%)
2023-07-17T15:44:14.3269657Z [Performance] Application.LoadMonoAssemblies                                                                             :        1 samples, Peak.  1.28 s (1.0x), Avg.  1.28 s, Total. 1.276 s (0.1%)
2023-07-17T15:44:14.3270691Z [Performance] RestoreManagedReferences                                                                                   :        2 samples, Peak.  55.9 ms (2.0x), Avg.  27.9 ms, Total. 55.87 ms (0.0%)
2023-07-17T15:44:14.3271713Z [Performance] InitializeOnLoad LayerSettingsWindow                                                                       :        2 samples, Peak.   271 us (1.9x), Avg.   143 us, Total. 285.0 us (0.0%)
2023-07-17T15:44:14.3272742Z [Performance] InitializeOnLoad ParameterControllerEditor                                                                 :        2 samples, Peak.  28.3 us (1.1x), Avg.  25.5 us, Total. 51.10 us (0.0%)
2023-07-17T15:44:14.3273771Z [Performance] InitializeOnLoad ServicesRepository                                                                        :        2 samples, Peak.   866 us (1.0x), Avg.   829 us, Total. 1.658 ms (0.0%)
2023-07-17T15:44:14.3274760Z [Performance] InitializeOnLoad CrashService                                                                              :        2 samples, Peak.   357 us (1.0x), Avg.   355 us, Total. 710.2 us (0.0%)
2023-07-17T15:44:14.3275817Z [Performance] InitializeOnLoad UDPService                                                                                :        2 samples, Peak.   182 us (1.0x), Avg.   179 us, Total. 358.4 us (0.0%)
2023-07-17T15:44:14.3276882Z [Performance] InitializeOnLoad CloudBuildPoller                                                                          :        2 samples, Peak.   129 us (1.1x), Avg.   121 us, Total. 241.3 us (0.0%)
2023-07-17T15:44:14.3277978Z [Performance] InitializeOnLoad BuildService                                                                              :        2 samples, Peak.   184 us (1.0x), Avg.   176 us, Total. 352.9 us (0.0%)
2023-07-17T15:44:14.3279416Z [Performance] InitializeOnLoad PurchasingService                                                                         :        2 samples, Peak.  7.98 ms (1.7x), Avg.  4.66 ms, Total. 9.322 ms (0.0%)
2023-07-17T15:44:14.3280408Z [Performance] InitializeOnLoad AdsService                                                                                :        2 samples, Peak.   507 us (1.0x), Avg.   505 us, Total. 1.010 ms (0.0%)
2023-07-17T15:44:14.3281456Z [Performance] InitializeOnLoad AnalyticsService                                                                          :        2 samples, Peak.   203 us (1.1x), Avg.   189 us, Total. 377.7 us (0.0%)
2023-07-17T15:44:14.3282467Z [Performance] InitializeOnLoad CollabService                                                                             :        2 samples, Peak.   180 us (1.0x), Avg.   173 us, Total. 345.0 us (0.0%)
2023-07-17T15:44:14.3283467Z [Performance] InitializeOnLoad UIDocumentHierarchyWatcher                                                                :        2 samples, Peak.   962 us (1.7x), Avg.   581 us, Total. 1.161 ms (0.0%)
2023-07-17T15:44:14.3284473Z [Performance] InitializeOnLoad RetainedMode                                                                              :        2 samples, Peak.  2.71 ms (1.1x), Avg.  2.50 ms, Total. 5.006 ms (0.0%)
2023-07-17T15:44:14.3285461Z [Performance] InitializeOnLoad UXMLEditorFactories                                                                       :        2 samples, Peak.  97.0 ms (1.2x), Avg.  79.8 ms, Total. 159.6 ms (0.0%)
2023-07-17T15:44:14.3286448Z [Performance] InitializeOnLoad EditorMonitor                                                                             :        2 samples, Peak.   242 us (1.0x), Avg.   237 us, Total. 473.4 us (0.0%)
2023-07-17T15:44:14.3287432Z [Performance] InitializeOnLoad EditorShaderLoader                                                                        :        2 samples, Peak.  1.10 ms (1.1x), Avg.   980 us, Total. 1.961 ms (0.0%)
2023-07-17T15:44:14.3288434Z [Performance] InitializeOnLoad SearchMonitor                                                                             :        2 samples, Peak.  16.2 ms (1.5x), Avg.  10.9 ms, Total. 21.82 ms (0.0%)
2023-07-17T15:44:14.3289441Z [Performance] InitializeOnLoad PlayModeDownload                                                                          :        2 samples, Peak.  1.39 ms (1.8x), Avg.   774 us, Total. 1.547 ms (0.0%)
2023-07-17T15:44:14.3290454Z [Performance] InitializeOnLoad SearchWindow                                                                              :        2 samples, Peak.   164 us (1.0x), Avg.   163 us, Total. 325.7 us (0.0%)
2023-07-17T15:44:14.3291466Z [Performance] InitializeOnLoad EditMode                                                                                  :        2 samples, Peak.   544 us (1.2x), Avg.   473 us, Total. 945.9 us (0.0%)
2023-07-17T15:44:14.3292469Z [Performance] InitializeOnLoad AssetStoreContext                                                                         :        2 samples, Peak.  4.77 ms (1.8x), Avg.  2.62 ms, Total. 5.247 ms (0.0%)
2023-07-17T15:44:14.3293468Z [Performance] InitializeOnLoad DrivenRectTransformUndo                                                                   :        2 samples, Peak.   289 us (1.4x), Avg.   207 us, Total. 413.4 us (0.0%)
2023-07-17T15:44:14.3294552Z [Performance] InitializeOnLoad SettingsService                                                                           :        2 samples, Peak.  9.10 us (1.1x), Avg.  8.65 us, Total. 17.30 us (0.0%)
2023-07-17T15:44:14.3295633Z [Performance] InitializeOnLoad PrefabInstanceChangedListener                                                             :        2 samples, Peak.   175 us (1.5x), Avg.   116 us, Total. 231.5 us (0.0%)
2023-07-17T15:44:14.3296681Z [Performance] InitializeOnLoad CacheServerWindow                                                                         :        2 samples, Peak.  23.7 us (1.2x), Avg.  19.4 us, Total. 38.80 us (0.0%)
2023-07-17T15:44:14.3297661Z [Performance] InitializeOnLoad WindowLayout                                                                              :        2 samples, Peak.   314 us (1.0x), Avg.   300 us, Total. 600.2 us (0.0%)
2023-07-17T15:44:14.3298650Z [Performance] InitializeOnLoad ManagedDebuggerWindow                                                                     :        2 samples, Peak.   767 us (1.4x), Avg.   541 us, Total. 1.082 ms (0.0%)
2023-07-17T15:44:14.3299736Z [Performance] InitializeOnLoad NativeFormatImporterUtility                                                               :        2 samples, Peak.  2.99 ms (1.2x), Avg.  2.53 ms, Total. 5.066 ms (0.0%)
2023-07-17T15:44:14.3300843Z [Performance] InitializeOnLoad UISystemProfilerRenderService                                                             :        2 samples, Peak.  13.0 us (1.1x), Avg.  11.7 us, Total. 23.30 us (0.0%)
2023-07-17T15:44:14.3301879Z [Performance] InitializeOnLoad ShortcutIntegration                                                                       :        2 samples, Peak.  97.9 us (1.0x), Avg.  93.6 us, Total. 187.2 us (0.0%)
2023-07-17T15:44:14.3302872Z [Performance] InitializeOnLoad AddComponentWindow                                                                        :        2 samples, Peak.   138 us (1.0x), Avg.   136 us, Total. 271.2 us (0.0%)
2023-07-17T15:44:14.3303868Z [Performance] InitializeOnLoad MenuItems                                                                                 :        2 samples, Peak.   119 us (1.1x), Avg.   105 us, Total. 209.6 us (0.0%)
2023-07-17T15:44:14.3304893Z [Performance] InitializeOnLoad MixerEffectDefinitionReloader                                                             :        2 samples, Peak.   113 ms (2.0x), Avg.  57.5 ms, Total. 115.0 ms (0.0%)
2023-07-17T15:44:14.3305932Z [Performance] InitializeOnLoad CloudBuild                                                                                :        2 samples, Peak.  13.0 us (1.3x), Avg.  9.95 us, Total. 19.90 us (0.0%)
2023-07-17T15:44:14.3306914Z [Performance] InitializeOnLoad UnityConnect                                                                              :        2 samples, Peak.  90.9 us (1.1x), Avg.  81.6 us, Total. 163.2 us (0.0%)
2023-07-17T15:44:14.3307912Z [Performance] InitializeOnLoad ProjectSearch                                                                             :        2 samples, Peak.  64.1 us (1.1x), Avg.  56.9 us, Total. 113.9 us (0.0%)
2023-07-17T15:44:14.3308934Z [Performance] InitializeOnLoad SearchService                                                                             :        2 samples, Peak.   159 us (1.1x), Avg.   143 us, Total. 285.6 us (0.0%)
2023-07-17T15:44:14.3309930Z [Performance] InitializeOnLoad SceneSearch                                                                               :        2 samples, Peak.  47.5 us (1.0x), Avg.  45.9 us, Total. 91.70 us (0.0%)
2023-07-17T15:44:14.3310927Z [Performance] InitializeOnLoad ObjectSelectorSearch                                                                      :        2 samples, Peak.  36.7 us (1.0x), Avg.  36.2 us, Total. 72.40 us (0.0%)
2023-07-17T15:44:14.3311912Z [Performance] InitializeOnLoad Collab                                                                                    :        2 samples, Peak.  5.56 ms (1.1x), Avg.  5.23 ms, Total. 10.46 ms (0.0%)
2023-07-17T15:44:14.3313006Z [Performance] InitializeOnLoad ManagedDebugger                                                                           :        2 samples, Peak.  2.00 us (1.3x), Avg.  1.55 us, Total. 3.100 us (0.0%)
2023-07-17T15:44:14.3314060Z [Performance] InitializeOnLoad EditorDragAndDrop.RegisterEditorClient                                                    :        2 samples, Peak.  1.21 ms (1.6x), Avg.   768 us, Total. 1.537 ms (0.0%)
2023-07-17T15:44:14.3315156Z [Performance] InitializeOnLoad LiveReloadTrackerCreator.Initialize                                                       :        2 samples, Peak.   250 us (1.0x), Avg.   248 us, Total. 496.5 us (0.0%)
2023-07-17T15:44:14.3316219Z [Performance] InitializeOnLoad EditorDelegateRegistration.Initialize                                                     :        2 samples, Peak.   544 us (1.0x), Avg.   524 us, Total. 1.047 ms (0.0%)
2023-07-17T15:44:14.3317431Z [Performance] InitializeOnLoad PackageManagerHookGUIDConverter.RegisterPackagesEventHandler                              :        2 samples, Peak.   157 us (1.3x), Avg.   118 us, Total. 236.5 us (0.0%)
2023-07-17T15:44:14.3318670Z [Performance] InitializeOnLoad RuntimeEditorDelegateRegistration.Initialize                                              :        2 samples, Peak.   255 us (1.1x), Avg.   239 us, Total. 477.7 us (0.0%)
2023-07-17T15:44:14.3320417Z [Performance] InitializeOnLoad EditorEventCallbacks.InitializeFontAssetResourceChangeCallBacks                           :        2 samples, Peak.  1.45 ms (1.1x), Avg.  1.37 ms, Total. 2.746 ms (0.0%)
2023-07-17T15:44:14.3321586Z [Performance] InitializeOnLoad SceneTemplateService.Init                                                                 :        2 samples, Peak.  8.35 ms (1.9x), Avg.  4.50 ms, Total. 9.010 ms (0.0%)
2023-07-17T15:44:14.3322720Z [Performance] InitializeOnLoad ScopedRegistryAddedPopup.SubscribeToRegistriesAdded                                       :        2 samples, Peak.  31.3 ms (1.3x), Avg.  24.4 ms, Total. 48.80 ms (0.0%)
2023-07-17T15:44:14.3323909Z [Performance] InitializeOnLoad EntitlementsErrorChecker.OpenFirstEntitlementError                                        :        2 samples, Peak.   526 us (1.6x), Avg.   338 us, Total. 675.0 us (0.0%)
2023-07-17T15:44:14.3325025Z [Performance] InitializeOnLoad DiagnosticSwitchesConsoleMessage.Init                                                     :        2 samples, Peak.  4.82 ms (1.1x), Avg.  4.43 ms, Total. 8.854 ms (0.0%)
2023-07-17T15:44:14.3326066Z [Performance] InitializeOnLoad SysrootManager.Initialize                                                                 :        2 samples, Peak.  25.7 us (1.2x), Avg.  20.9 us, Total. 41.80 us (0.0%)
2023-07-17T15:44:14.3327086Z [Performance] InitializeOnLoad EditorWindow.Initialize                                                                   :        2 samples, Peak.   254 us (1.0x), Avg.   248 us, Total. 496.0 us (0.0%)
2023-07-17T15:44:14.3328209Z [Performance] InitializeOnLoad AssetPostprocessingInternal.RefreshCustomDependencies                                     :        2 samples, Peak.  2.41 ms (1.3x), Avg.  1.85 ms, Total. 3.691 ms (0.0%)
2023-07-17T15:44:14.3329339Z [Performance] InitializeOnLoad SceneVisibilityManager.Initialize                                                         :        2 samples, Peak.  4.14 ms (1.6x), Avg.  2.63 ms, Total. 5.256 ms (0.0%)
2023-07-17T15:44:14.3330440Z [Performance] InitializeOnLoad MemoryProfilerCompilationGuard.InjectCompileGuard                                         :        2 samples, Peak.   216 us (1.3x), Avg.   162 us, Total. 324.2 us (0.0%)
2023-07-17T15:44:14.3331559Z [Performance] ProcessService.EditorAfterLoadAllAssemblies                                                                :        2 samples, Peak.   539 us (1.2x), Avg.   443 us, Total. 887.0 us (0.0%)
2023-07-17T15:44:14.3332692Z [Performance] Application.ReadLicenseInfo                                                                                :        1 samples, Peak.  31.6 ms (1.0x), Avg.  31.6 ms, Total. 31.62 ms (0.0%)
2023-07-17T15:44:14.3333791Z [Performance] Application.InitialRefresh                                                                                 :        1 samples, Peak.   960 s (1.0x), Avg.   960 s, Total. 959.7 s (60.4%)
2023-07-17T15:44:14.3334874Z [Performance] BuilderAssetModificationProcessor.OnWillCreateAsset                                                        :        5 samples, Peak.  1.28 ms (3.9x), Avg.   329 us, Total. 1.643 ms (0.0%)
2023-07-17T15:44:14.3335954Z [Performance] ShaderImporter.SourceAssetModified                                                                         :       10 samples, Peak.   195 us (9.5x), Avg.  20.5 us, Total. 205.3 us (0.0%)
2023-07-17T15:44:14.3337013Z [Performance] ShaderIncludeImporter.SourceAssetModified                                                                  :       10 samples, Peak.   303 us (3.4x), Avg.  87.9 us, Total. 878.9 us (0.0%)
2023-07-17T15:44:14.3338200Z [Performance] PresetManagerPostProcessor.OnPreprocessAsset                                                               :      398 samples, Peak.   986 us (40.8x), Avg.  24.2 us, Total. 9.630 ms (0.0%)
2023-07-17T15:44:14.3339411Z [Performance] CancelSplashScreenOnAssetChange.OnPreprocessAsset                                                          :      398 samples, Peak.   173 us (36.4x), Avg.  4.76 us, Total. 1.894 ms (0.0%)
2023-07-17T15:44:14.3340509Z [Performance] BuilderAssetModificationProcessor.OnWillSaveAssets                                                         :        8 samples, Peak.  8.57 ms (1.7x), Avg.  4.97 ms, Total. 39.77 ms (0.0%)
2023-07-17T15:44:14.3341623Z [Performance] TerrainModificationProcessor.OnWillSaveAssets                                                              :        8 samples, Peak.   843 us (4.2x), Avg.   203 us, Total. 1.620 ms (0.0%)
2023-07-17T15:44:14.3342707Z [Performance] VersionControl.Task.Wait                                                                                   :        1 samples, Peak.  8.90 us (1.0x), Avg.  8.90 us, Total. 8.900 us (0.0%)
2023-07-17T15:44:14.3343681Z [Performance] Compiling Scripts                                                                                          :        1 samples, Peak.  93.5 s (1.0x), Avg.  93.5 s, Total. 93.49 s (5.9%)
2023-07-17T15:44:14.3344682Z [Performance] InitializeOnLoad AndroidSettingsChecker                                                                    :        1 samples, Peak.   652 ms (1.0x), Avg.   652 ms, Total. 651.9 ms (0.0%)
2023-07-17T15:44:14.3345692Z [Performance] InitializeOnLoad DllLocationPatcher                                                                        :        1 samples, Peak.  63.7 us (1.0x), Avg.  63.7 us, Total. 63.70 us (0.0%)
2023-07-17T15:44:14.3346754Z [Performance] InitializeOnLoad GenerateXmlFromGoogleServicesJson                                                         :        1 samples, Peak.  1.84 s (1.0x), Avg.  1.84 s, Total. 1.840 s (0.1%)
2023-07-17T15:44:14.3347830Z [Performance] DotNetVersionUpdater.OnWillSaveAssets                                                                      :        6 samples, Peak.   428 us (4.3x), Avg.  99.3 us, Total. 596.0 us (0.0%)
2023-07-17T15:44:14.3348863Z [Performance] MyEditorEvents.OnWillSaveAssets                                                                            :        6 samples, Peak.  9.60 s (1.4x), Avg.  6.87 s, Total. 41.23 s (2.6%)
2023-07-17T15:44:14.3349897Z [Performance] CleanEmptyDirectoriesFeature.OnWillSaveAssets                                                              :        6 samples, Peak.   356 us (5.2x), Avg.  68.1 us, Total. 408.3 us (0.0%)
2023-07-17T15:44:14.3350985Z [Performance] AssetModificationProcessor.OnWillSaveAssets                                                                :        6 samples, Peak.   383 us (5.8x), Avg.  66.2 us, Total. 397.1 us (0.0%)
2023-07-17T15:44:14.3352151Z [Performance] MaterialModificationProcessor.OnWillCreateAsset                                                            :        6 samples, Peak.   706 us (3.4x), Avg.   208 us, Total. 1.246 ms (0.0%)
2023-07-17T15:44:14.3361121Z [Performance] AssetDatabase.DeleteAssets                                                                                 :        2 samples, Peak.  84.4 ms (1.7x), Avg.  50.9 ms, Total. 101.7 ms (0.0%)
2023-07-17T15:44:14.3362424Z [Performance] UtilityWindowModificationProcessor.OnWillDeleteAsset                                                       :        2 samples, Peak.  1.69 ms (2.0x), Avg.   865 us, Total. 1.731 ms (0.0%)
2023-07-17T15:44:14.3363597Z [Performance] CleanUpDefinesOnPunDelete.OnWillDeleteAsset                                                                :        2 samples, Peak.   198 us (2.0x), Avg.   100 us, Total. 200.8 us (0.0%)
2023-07-17T15:44:14.3364716Z [Performance] NodeEditorAssetModProcessor.OnWillDeleteAsset                                                              :        2 samples, Peak.   584 us (2.0x), Avg.   294 us, Total. 588.3 us (0.0%)
2023-07-17T15:44:14.3365989Z [Performance] LocalizationAssetModificationProcessor.OnWillDeleteAsset                                                   :        2 samples, Peak.   370 us (1.9x), Avg.   193 us, Total. 386.7 us (0.0%)
2023-07-17T15:44:14.3367213Z [Performance] ProcessAssetModifications.OnWillDeleteAsset                                                                :        2 samples, Peak.   434 us (2.0x), Avg.   222 us, Total. 443.0 us (0.0%)
2023-07-17T15:44:14.3368359Z [Performance] BuilderAssetModificationProcessor.OnWillDeleteAsset                                                        :        2 samples, Peak.   358 us (2.0x), Avg.   181 us, Total. 361.6 us (0.0%)
2023-07-17T15:44:14.3369492Z [Performance] TMP_FontAssetPostProcessor.OnWillDeleteAsset                                                               :        2 samples, Peak.   334 us (1.2x), Avg.   267 us, Total. 534.5 us (0.0%)
2023-07-17T15:44:14.3370627Z [Performance] CancelSplashScreenOnAssetDelete.OnWillDeleteAsset                                                          :        2 samples, Peak.   281 us (2.0x), Avg.   143 us, Total. 285.6 us (0.0%)
2023-07-17T15:44:14.3371718Z [Performance] InitializeOnLoad SettingsWindowUpdater                                                                     :        1 samples, Peak.  63.0 us (1.0x), Avg.  63.0 us, Total. 63.00 us (0.0%)
2023-07-17T15:44:14.3372768Z [Performance] InitializeOnLoad XcodeProjectPatcher                                                                       :        1 samples, Peak.  2.36 ms (1.0x), Avg.  2.36 ms, Total. 2.363 ms (0.0%)
2023-07-17T15:44:14.3373810Z [Performance] InitializeOnLoad FacebookSettingsEditor                                                                    :        1 samples, Peak.  36.0 us (1.0x), Avg.  36.0 us, Total. 36.00 us (0.0%)
2023-07-17T15:44:14.3374871Z [Performance] InitializeOnLoad AndroidSupportLibraryResolver                                                             :        1 samples, Peak.  14.3 ms (1.0x), Avg.  14.3 ms, Total. 14.29 ms (0.0%)
2023-07-17T15:44:14.3375925Z [Performance] InitializeOnLoad PlayModeStateChanged                                                                      :        1 samples, Peak.   139 us (1.0x), Avg.   139 us, Total. 139.3 us (0.0%)
2023-07-17T15:44:14.3376976Z [Performance] InitializeOnLoad PlayServicesResolver                                                                      :        1 samples, Peak.   900 ns (1.0x), Avg.   900 ns, Total. 900.0 ns (0.0%)
2023-07-17T15:44:14.3378010Z [Performance] InitializeOnLoad RunOnMainThread                                                                           :        1 samples, Peak.   700 ns (1.0x), Avg.   700 ns, Total. 700.0 ns (0.0%)
2023-07-17T15:44:14.3379010Z [Performance] InitializeOnLoad VersionHandlerImpl                                                                        :        1 samples, Peak.   600 ns (1.0x), Avg.   600 ns, Total. 600.0 ns (0.0%)
2023-07-17T15:44:14.3380141Z [Performance] InitializeOnLoad DotNetVersionUpdater                                                                      :        1 samples, Peak.  4.20 us (1.0x), Avg.  4.20 us, Total. 4.200 us (0.0%)
2023-07-17T15:44:14.3381159Z [Performance] InitializeOnLoad BuildTargetChecker                                                                        :        1 samples, Peak.  29.2 ms (1.0x), Avg.  29.2 ms, Total. 29.18 ms (0.0%)
2023-07-17T15:44:14.3382177Z [Performance] InitializeOnLoad PackageUninstallWindow                                                                    :        1 samples, Peak.  92.8 us (1.0x), Avg.  92.8 us, Total. 92.80 us (0.0%)
2023-07-17T15:44:14.3383186Z [Performance] InitializeOnLoad IOSResolver                                                                               :        1 samples, Peak.  2.61 ms (1.0x), Avg.  2.61 ms, Total. 2.605 ms (0.0%)
2023-07-17T15:44:14.3384177Z [Performance] InitializeOnLoad VersionHandler                                                                            :        1 samples, Peak.  2.60 us (1.0x), Avg.  2.60 us, Total. 2.600 us (0.0%)
2023-07-17T15:44:14.3385242Z [Performance] InitializeOnLoad AndroidManifestPatcher                                                                    :        1 samples, Peak.  1.01 ms (1.0x), Avg.  1.01 ms, Total. 1.010 ms (0.0%)
2023-07-17T15:44:14.3386389Z [Performance] InitializeOnLoad PackageMigrator                                                                           :        1 samples, Peak.  3.13 ms (1.0x), Avg.  3.13 ms, Total. 3.134 ms (0.0%)
2023-07-17T15:44:14.3387420Z [Performance] InitializeOnLoad PackageManagerResolver                                                                    :        1 samples, Peak.  1000 ns (1.0x), Avg.  1000 ns, Total. 1000.0 ns (0.0%)
2023-07-17T15:44:14.3388465Z [Performance] InitializeOnLoad ProbeGIBaking                                                                             :        1 samples, Peak.   653 us (1.0x), Avg.   653 us, Total. 653.3 us (0.0%)
2023-07-17T15:44:14.3389450Z [Performance] InitializeOnLoad FilterWindow                                                                              :        1 samples, Peak.  45.4 us (1.0x), Avg.  45.4 us, Total. 45.40 us (0.0%)
2023-07-17T15:44:14.3390484Z [Performance] InitializeOnLoad RealtimeProbeSubdivisionDebug                                                             :        1 samples, Peak.   123 us (1.0x), Avg.   123 us, Total. 123.3 us (0.0%)
2023-07-17T15:44:14.3391504Z [Performance] InitializeOnLoad PurchasingImporter                                                                        :        1 samples, Peak.   411 us (1.0x), Avg.   411 us, Total. 410.8 us (0.0%)
2023-07-17T15:44:14.3392570Z [Performance] InitializeOnLoad PurchasingServiceAnalyticsSender                                                          :        1 samples, Peak.  1.71 ms (1.0x), Avg.  1.71 ms, Total. 1.710 ms (0.0%)
2023-07-17T15:44:14.3393650Z [Performance] InitializeOnLoad UnityPurchasingEditor                                                                     :        1 samples, Peak.  1.34 ms (1.0x), Avg.  1.34 ms, Total. 1.342 ms (0.0%)
2023-07-17T15:44:14.3394663Z [Performance] InitializeOnLoad PrefColorBridge                                                                           :        1 samples, Peak.  1.14 ms (1.0x), Avg.  1.14 ms, Total. 1.140 ms (0.0%)
2023-07-17T15:44:14.3395700Z [Performance] InitializeOnLoad NiceVibrationsDefineSymbols                                                               :        1 samples, Peak.  2.36 ms (1.0x), Avg.  2.36 ms, Total. 2.358 ms (0.0%)
2023-07-17T15:44:14.3396738Z [Performance] InitializeOnLoad ShaderGraphMaterialsUpdater                                                               :        2 samples, Peak.   437 us (1.6x), Avg.   266 us, Total. 532.2 us (0.0%)
2023-07-17T15:44:14.3397816Z [Performance] InitializeOnLoad RendererDataPatcher                                                                       :        1 samples, Peak.  61.5 ms (1.0x), Avg.  61.5 ms, Total. 61.54 ms (0.0%)
2023-07-17T15:44:14.3398887Z [Performance] InitializeOnLoad EditorToolManager                                                                         :        1 samples, Peak.  2.36 ms (1.0x), Avg.  2.36 ms, Total. 2.364 ms (0.0%)
2023-07-17T15:44:14.3400361Z [Performance] InitializeOnLoad Renderer2DAnalytics                                                                       :        1 samples, Peak.   107 us (1.0x), Avg.   107 us, Total. 107.2 us (0.0%)
2023-07-17T15:44:14.3401381Z [Performance] InitializeOnLoad BurstLoader                                                                               :        1 samples, Peak.  1.78 s (1.0x), Avg.  1.78 s, Total. 1.783 s (0.1%)
2023-07-17T15:44:14.3402445Z [Performance] InitializeOnLoad EditorGameServiceAnalyticsRegistrant                                                      :        1 samples, Peak.  17.9 ms (1.0x), Avg.  17.9 ms, Total. 17.86 ms (0.0%)
2023-07-17T15:44:14.3403561Z [Performance] InitializeOnLoad PhotonEditorUtils                                                                         :        1 samples, Peak.  14.0 ms (1.0x), Avg.  14.0 ms, Total. 14.04 ms (0.0%)
2023-07-17T15:44:14.3404585Z [Performance] InitializeOnLoad Analytics                                                                                 :        1 samples, Peak.   327 us (1.0x), Avg.   327 us, Total. 327.0 us (0.0%)
2023-07-17T15:44:14.3405572Z [Performance] InitializeOnLoad SpriteEditorWindow                                                                        :        1 samples, Peak.   539 us (1.0x), Avg.   539 us, Total. 538.6 us (0.0%)
2023-07-17T15:44:14.3406572Z [Performance] InitializeOnLoad VisualStudioEditor                                                                        :        1 samples, Peak.  11.3 ms (1.0x), Avg.  11.3 ms, Total. 11.31 ms (0.0%)
2023-07-17T15:44:14.3407579Z [Performance] InitializeOnLoad VisualStudioIntegration                                                                   :        1 samples, Peak.  3.39 ms (1.0x), Avg.  3.39 ms, Total. 3.386 ms (0.0%)
2023-07-17T15:44:14.3408603Z [Performance] InitializeOnLoad TestRunnerApiListener                                                                     :        1 samples, Peak.   174 us (1.0x), Avg.   174 us, Total. 173.9 us (0.0%)
2023-07-17T15:44:14.3409636Z [Performance] InitializeOnLoad ShadowCasterGroup2DManager                                                                :        1 samples, Peak.   195 us (1.0x), Avg.   195 us, Total. 194.5 us (0.0%)
2023-07-17T15:44:14.3410655Z [Performance] InitializeOnLoad NodeEditorWindow                                                                          :        1 samples, Peak.   152 us (1.0x), Avg.   152 us, Total. 151.9 us (0.0%)
2023-07-17T15:44:14.3411644Z [Performance] InitializeOnLoad LocalizeComponent                                                                         :        1 samples, Peak.  2.46 ms (1.0x), Avg.  2.46 ms, Total. 2.465 ms (0.0%)
2023-07-17T15:44:14.3412642Z [Performance] InitializeOnLoad DrivenPropertyDrawer                                                                      :        1 samples, Peak.   287 us (1.0x), Avg.   287 us, Total. 287.0 us (0.0%)
2023-07-17T15:44:14.3413635Z [Performance] InitializeOnLoad GameViewLanguageMenu                                                                      :        1 samples, Peak.   777 us (1.0x), Avg.   777 us, Total. 776.6 us (0.0%)
2023-07-17T15:44:14.3414673Z [Performance] InitializeOnLoad ContextualPropertyMenu                                                                    :        1 samples, Peak.   215 us (1.0x), Avg.   215 us, Total. 215.0 us (0.0%)
2023-07-17T15:44:14.3415699Z [Performance] InitializeOnLoad ScenePropertyTracker                                                                      :        1 samples, Peak.   514 us (1.0x), Avg.   514 us, Total. 514.2 us (0.0%)
2023-07-17T15:44:14.3416780Z [Performance] InitializeOnLoad LocalizeComponent_UGUI                                                                    :        1 samples, Peak.   464 us (1.0x), Avg.   464 us, Total. 463.6 us (0.0%)
2023-07-17T15:44:14.3417837Z [Performance] InitializeOnLoad LocalizeComponent_TMPro                                                                   :        1 samples, Peak.   107 us (1.0x), Avg.   107 us, Total. 107.3 us (0.0%)
2023-07-17T15:44:14.3418852Z [Performance] InitializeOnLoad AssetTableAnalyzeRule                                                                     :        1 samples, Peak.  1.51 ms (1.0x), Avg.  1.51 ms, Total. 1.507 ms (0.0%)
2023-07-17T15:44:14.3419844Z [Performance] InitializeOnLoad LocaleAnalyzeRule                                                                         :        1 samples, Peak.   113 us (1.0x), Avg.   113 us, Total. 113.3 us (0.0%)
2023-07-17T15:44:14.3420865Z [Performance] InitializeOnLoad StringTableAnalyzeRule                                                                    :        1 samples, Peak.   114 us (1.0x), Avg.   114 us, Total. 113.8 us (0.0%)
2023-07-17T15:44:14.3421953Z [Performance] InitializeOnLoad InputSystem                                                                               :        1 samples, Peak.   120 ms (1.0x), Avg.   120 ms, Total. 119.6 ms (0.0%)
2023-07-17T15:44:14.3422968Z [Performance] InitializeOnLoad TouchSimulation                                                                           :        1 samples, Peak.   193 us (1.0x), Avg.   193 us, Total. 192.9 us (0.0%)
2023-07-17T15:44:14.3424002Z [Performance] InitializeOnLoad PrefabLayoutRebuilder                                                                     :        1 samples, Peak.   359 us (1.0x), Avg.   359 us, Total. 359.0 us (0.0%)
2023-07-17T15:44:14.3425021Z [Performance] InitializeOnLoad PhotonViewHandler                                                                         :        1 samples, Peak.   212 us (1.0x), Avg.   212 us, Total. 211.9 us (0.0%)
2023-07-17T15:44:14.3426043Z [Performance] InitializeOnLoad RerunCallbackInitializer                                                                  :        1 samples, Peak.  3.91 ms (1.0x), Avg.  3.91 ms, Total. 3.915 ms (0.0%)
2023-07-17T15:44:14.3427100Z [Performance] InitializeOnLoad UnityTestProtocolStarter                                                                  :        1 samples, Peak.   178 us (1.0x), Avg.   178 us, Total. 178.2 us (0.0%)
2023-07-17T15:44:14.3428130Z [Performance] InitializeOnLoad TestStarter                                                                               :        1 samples, Peak.  1.38 ms (1.0x), Avg.  1.38 ms, Total. 1.378 ms (0.0%)
2023-07-17T15:44:14.3429112Z [Performance] InitializeOnLoad BackgroundWatcher                                                                         :        1 samples, Peak.  90.5 us (1.0x), Avg.  90.5 us, Total. 90.50 us (0.0%)
2023-07-17T15:44:14.3430104Z [Performance] InitializeOnLoad SetupWizard                                                                               :        1 samples, Peak.  42.0 us (1.0x), Avg.  42.0 us, Total. 42.00 us (0.0%)
2023-07-17T15:44:14.3431099Z [Performance] InitializeOnLoad IPrepareFeature                                                                           :        1 samples, Peak.   149 us (1.0x), Avg.   149 us, Total. 148.8 us (0.0%)
2023-07-17T15:44:14.3432090Z [Performance] InitializeOnLoad MyEditorEvents                                                                            :        1 samples, Peak.   500 ns (1.0x), Avg.   500 ns, Total. 500.0 ns (0.0%)
2023-07-17T15:44:14.3433097Z [Performance] InitializeOnLoad AutoPropertyHandler                                                                       :        1 samples, Peak.  4.30 ms (1.0x), Avg.  4.30 ms, Total. 4.301 ms (0.0%)
2023-07-17T15:44:14.3434139Z [Performance] InitializeOnLoad MustBeAssignedAttributeChecker                                                            :        1 samples, Peak.  75.7 us (1.0x), Avg.  75.7 us, Total. 75.70 us (0.0%)
2023-07-17T15:44:14.3435264Z [Performance] InitializeOnLoad MustBeAssignedConditionalFieldExclude                                                     :        1 samples, Peak.  95.0 us (1.0x), Avg.  95.0 us, Total. 95.00 us (0.0%)
2023-07-17T15:44:14.3436415Z [Performance] InitializeOnLoad RequireLayerOtRagAttributeHandler                                                         :        1 samples, Peak.  54.3 us (1.0x), Avg.  54.3 us, Total. 54.30 us (0.0%)
2023-07-17T15:44:14.3437472Z [Performance] InitializeOnLoad AutoSaveFeature                                                                           :        1 samples, Peak.  47.9 us (1.0x), Avg.  47.9 us, Total. 47.90 us (0.0%)
2023-07-17T15:44:14.3438450Z [Performance] InitializeOnLoad SelectionHistoryHotkeys                                                                   :        1 samples, Peak.   198 us (1.0x), Avg.   198 us, Total. 198.0 us (0.0%)
2023-07-17T15:44:14.3439722Z [Performance] InitializeOnLoad MyBoxFeatures                                                                             :        1 samples, Peak.  1.57 ms (1.0x), Avg.  1.57 ms, Total. 1.569 ms (0.0%)
2023-07-17T15:44:14.3440813Z [Performance] InitializeOnLoad MyBoxWindow                                                                               :        1 samples, Peak.  1000 ns (1.0x), Avg.  1000 ns, Total. 1000.0 ns (0.0%)
2023-07-17T15:44:14.3441891Z [Performance] InitializeOnLoad PlasticPlugin                                                                             :        1 samples, Peak.  65.4 ms (1.0x), Avg.  65.4 ms, Total. 65.44 ms (0.0%)
2023-07-17T15:44:14.3442892Z [Performance] InitializeOnLoad UnityAnalyticsStorage                                                                     :        1 samples, Peak.   471 us (1.0x), Avg.   471 us, Total. 471.2 us (0.0%)
2023-07-17T15:44:14.3443907Z [Performance] InitializeOnLoad BoneGizmoInitializer                                                                      :        1 samples, Peak.  4.21 ms (1.0x), Avg.  4.21 ms, Total. 4.214 ms (0.0%)
2023-07-17T15:44:14.3444955Z [Performance] InitializeOnLoad AddressableEditorInitialization                                                           :        1 samples, Peak.  92.4 ms (1.0x), Avg.  92.4 ms, Total. 92.42 ms (0.0%)
2023-07-17T15:44:14.3446015Z [Performance] InitializeOnLoad AddressableAssetInspectorGUI                                                              :        1 samples, Peak.   301 us (1.0x), Avg.   301 us, Total. 301.4 us (0.0%)
2023-07-17T15:44:14.3447081Z [Performance] InitializeOnLoad RegisterCheckBundleDupeDependencies                                                       :        1 samples, Peak.   599 us (1.0x), Avg.   599 us, Total. 598.8 us (0.0%)
2023-07-17T15:44:14.3448153Z [Performance] InitializeOnLoad RegisterCheckResourcesDupeDependencies                                                    :        1 samples, Peak.   111 us (1.0x), Avg.   111 us, Total. 111.0 us (0.0%)
2023-07-17T15:44:14.3449265Z [Performance] InitializeOnLoad RegisterCheckSceneDupeDependencies                                                        :        1 samples, Peak.  80.3 us (1.0x), Avg.  80.3 us, Total. 80.30 us (0.0%)
2023-07-17T15:44:14.3450309Z [Performance] InitializeOnLoad GlobalInitialization                                                                      :        1 samples, Peak.   279 us (1.0x), Avg.   279 us, Total. 279.4 us (0.0%)
2023-07-17T15:44:14.3451316Z [Performance] InitializeOnLoad RegisterBuildBundleLayout                                                                 :        1 samples, Peak.  90.3 us (1.0x), Avg.  90.3 us, Total. 90.30 us (0.0%)
2023-07-17T15:44:14.3452323Z [Performance] InitializeOnLoad ToolbarBootstrap                                                                          :        1 samples, Peak.   502 us (1.0x), Avg.   502 us, Total. 501.6 us (0.0%)
2023-07-17T15:44:14.3453322Z [Performance] InitializeOnLoad NodeClassCache                                                                            :        1 samples, Peak.  35.7 ms (1.0x), Avg.  35.7 ms, Total. 35.74 ms (0.0%)
2023-07-17T15:44:14.3454425Z [Performance] InitializeOnLoad RiderScriptEditor                                                                         :        1 samples, Peak.  3.96 ms (1.0x), Avg.  3.96 ms, Total. 3.964 ms (0.0%)
2023-07-17T15:44:14.3455440Z [Performance] InitializeOnLoad CallbackInitializer                                                                       :        1 samples, Peak.  1.60 ms (1.0x), Avg.  1.60 ms, Total. 1.603 ms (0.0%)
2023-07-17T15:44:14.3456430Z [Performance] InitializeOnLoad VSCodeScriptEditor                                                                        :        1 samples, Peak.  2.58 ms (1.0x), Avg.  2.58 ms, Total. 2.581 ms (0.0%)
2023-07-17T15:44:14.3457434Z [Performance] InitializeOnLoad MMMonoBehaviourDrawerHelper                                                               :        1 samples, Peak.  12.7 us (1.0x), Avg.  12.7 us, Total. 12.70 us (0.0%)
2023-07-17T15:44:14.3458494Z [Performance] InitializeOnLoad MMPathEditor                                                                              :        1 samples, Peak.  15.1 us (1.0x), Avg.  15.1 us, Total. 15.10 us (0.0%)
2023-07-17T15:44:14.3459511Z [Performance] InitializeOnLoad MMPathMovementEditor                                                                      :        1 samples, Peak.  10.1 us (1.0x), Avg.  10.1 us, Total. 10.10 us (0.0%)
2023-07-17T15:44:14.3460556Z [Performance] InitializeOnLoad SceneViewIconEditor                                                                       :        1 samples, Peak.  6.60 us (1.0x), Avg.  6.60 us, Total. 6.600 us (0.0%)
2023-07-17T15:44:14.3461630Z [Performance] InitializeOnLoad MMExecutionOrderAttribute.ModifyExecutionOrder                                            :        1 samples, Peak.  3.15 ms (1.0x), Avg.  3.15 ms, Total. 3.153 ms (0.0%)
2023-07-17T15:44:14.3462796Z [Performance] InitializeOnLoad ContextualMenuDispatcher.RegisterAdditionalDataMenus                                      :        1 samples, Peak.  47.1 ms (1.0x), Avg.  47.1 ms, Total. 47.11 ms (0.0%)
2023-07-17T15:44:14.3463908Z [Performance] Menu.FilterMenuItem                                                                                        :     1700 samples, Peak.   241 ms (1688.3x), Avg.   143 us, Total. 243.1 ms (0.0%)
2023-07-17T15:44:14.3465032Z [Performance] InitializeOnLoad CoreRenderPipelinePreferences.InitPreferenceProviders                                     :        1 samples, Peak.  16.3 ms (1.0x), Avg.  16.3 ms, Total. 16.34 ms (0.0%)
2023-07-17T15:44:14.3466205Z [Performance] InitializeOnLoad VolumeGizmoDrawer.InitVolumeGizmoCallbacks                                                :        1 samples, Peak.   390 us (1.0x), Avg.   390 us, Total. 389.8 us (0.0%)
2023-07-17T15:44:14.3467314Z [Performance] InitializeOnLoad ObfuscationMigration.MigrateObfuscations                                                  :        1 samples, Peak.   257 us (1.0x), Avg.   257 us, Total. 256.7 us (0.0%)
2023-07-17T15:44:14.3468468Z [Performance] InitializeOnLoad ProductCatalogEditor.MigrateProductCatalog                                                :        1 samples, Peak.   180 ms (1.0x), Avg.   180 ms, Total. 180.4 ms (0.0%)
2023-07-17T15:44:14.3469642Z [Performance] InitializeOnLoad UnityPurchasingEditor.CheckUdpUmpPackageInstalled                                         :        1 samples, Peak.   531 us (1.0x), Avg.   531 us, Total. 530.8 us (0.0%)
2023-07-17T15:44:14.3470906Z [Performance] InitializeOnLoad UnityPurchasingEditor.MigrateBillingMode                                                  :        1 samples, Peak.   167 us (1.0x), Avg.   167 us, Total. 167.2 us (0.0%)
2023-07-17T15:44:14.3472051Z [Performance] InitializeOnLoad MaterialReimporter.RegisterUpgraderReimport                                               :        2 samples, Peak.   300 us (1.8x), Avg.   167 us, Total. 334.3 us (0.0%)
2023-07-17T15:44:14.3473250Z [Performance] InitializeOnLoad EditorGameServiceRegistry.RegisterAllServices                                             :        1 samples, Peak.  6.93 ms (1.0x), Avg.  6.93 ms, Total. 6.933 ms (0.0%)
2023-07-17T15:44:14.3474418Z [Performance] InitializeOnLoad ServiceInstallationListener.RegisterToEvents                                              :        1 samples, Peak.   231 us (1.0x), Avg.   231 us, Total. 231.4 us (0.0%)
2023-07-17T15:44:14.3475572Z [Performance] InitializeOnLoad ActionSchedulerCleaner.RegisterSchedulerCleaner                                           :        1 samples, Peak.   587 us (1.0x), Avg.   587 us, Total. 587.1 us (0.0%)
2023-07-17T15:44:14.3476693Z [Performance] InitializeOnLoad UIParticleUpdater.InitializeOnLoad                                                        :        1 samples, Peak.  3.18 ms (1.0x), Avg.  3.18 ms, Total. 3.177 ms (0.0%)
2023-07-17T15:44:14.3477756Z [Performance] InitializeOnLoad NodeEditorWindow.OnLoad                                                                   :        1 samples, Peak.   147 us (1.0x), Avg.   147 us, Total. 147.4 us (0.0%)
2023-07-17T15:44:14.3478928Z [Performance] InitializeOnLoad NodeEditorAssetModProcessor.OnReloadEditor                                                :        1 samples, Peak.  11.1 s (1.0x), Avg.  11.1 s, Total. 11.07 s (0.7%)
2023-07-17T15:44:14.3480251Z [Performance] InitializeOnLoad PhotonEditor.InitializeOnLoadMethod                                                       :        1 samples, Peak.  7.66 ms (1.0x), Avg.  7.66 ms, Total. 7.656 ms (0.0%)
2023-07-17T15:44:14.3481324Z [Performance] InitializeOnLoad TestJobDataHolder.ResumeRunningJobs                                                       :        1 samples, Peak.  1.61 ms (1.0x), Avg.  1.61 ms, Total. 1.615 ms (0.0%)
2023-07-17T15:44:14.3482437Z [Performance] InitializeOnLoad AnalyticsReporter.RegisterCallbacks                                                       :        1 samples, Peak.   500 us (1.0x), Avg.   500 us, Total. 500.2 us (0.0%)
2023-07-17T15:44:14.3483526Z [Performance] InitializeOnLoad AboutWindow.FirstSetup                                                                    :        1 samples, Peak.   242 us (1.0x), Avg.   242 us, Total. 241.6 us (0.0%)
2023-07-17T15:44:14.3484565Z [Performance] InitializeOnLoad $BurstDirectCallInitializer.Initialize                                                    :        3 samples, Peak.  7.75 ms (1.7x), Avg.  4.43 ms, Total. 13.29 ms (0.0%)
2023-07-17T15:44:14.3485608Z [Performance] InitializeOnLoad SetupWizard.Init                                                                          :        1 samples, Peak.   373 us (1.0x), Avg.   373 us, Total. 373.4 us (0.0%)
2023-07-17T15:44:14.3486760Z [Performance] InitializeOnLoad AddressablesPlayerBuildProcessor.CleanTemporaryPlayerBuildData                            :        1 samples, Peak.  18.6 ms (1.0x), Avg.  18.6 ms, Total. 18.64 ms (0.0%)
2023-07-17T15:44:14.3487908Z [Performance] InitializeOnLoad AddressablesBuildScriptHooks.Init                                                         :        1 samples, Peak.   152 us (1.0x), Avg.   152 us, Total. 152.4 us (0.0%)
2023-07-17T15:44:14.3489071Z [Performance] InitializeOnLoad AddressableAssetSettings.RegisterWithAssetPostProcessor                                   :        1 samples, Peak.   869 us (1.0x), Avg.   869 us, Total. 868.6 us (0.0%)
2023-07-17T15:44:14.3490217Z [Performance] InitializeOnLoad AddressableAssetSettings.CheckCCDStatus                                                   :        1 samples, Peak.   111 us (1.0x), Avg.   111 us, Total. 111.1 us (0.0%)
2023-07-17T15:44:14.3491341Z [Performance] InitializeOnLoad ProfileDataSourceSettings.InitializeCloudEnvironment                                      :        1 samples, Peak.   451 us (1.0x), Avg.   451 us, Total. 450.7 us (0.0%)
2023-07-17T15:44:14.3492505Z [Performance] InitializeOnLoad PhotonView.SetPhotonViewExecutionOrder                                                    :        1 samples, Peak.  12.3 ms (1.0x), Avg.  12.3 ms, Total. 12.27 ms (0.0%)
2023-07-17T15:44:14.3493662Z [Performance] InitializeOnLoad UIParticleEditor.Init                                                                     :        1 samples, Peak.  11.5 ms (1.0x), Avg.  11.5 ms, Total. 11.53 ms (0.0%)
2023-07-17T15:44:14.3494753Z [Performance] InitializeOnLoad IKEditorManager.CreateInstance                                                            :        1 samples, Peak.  7.15 ms (1.0x), Avg.  7.15 ms, Total. 7.150 ms (0.0%)
2023-07-17T15:44:14.3495858Z [Performance] InitializeOnLoad Addressables.RegisterPlayModeStateChange                                                  :        1 samples, Peak.  85.1 us (1.0x), Avg.  85.1 us, Total. 85.10 us (0.0%)
2023-07-17T15:44:14.3497024Z [Performance] InitializeOnLoad AssetReference.RegisterForPlaymodeChange                                                  :        1 samples, Peak.   384 us (1.0x), Avg.   384 us, Total. 383.6 us (0.0%)
2023-07-17T15:44:14.3498130Z [Performance] DidReloadScriptsDebugWindow.OnEditorReload                                                                 :        1 samples, Peak.  19.8 ms (1.0x), Avg.  19.8 ms, Total. 19.78 ms (0.0%)
2023-07-17T15:44:14.3499307Z [Performance] DidReloadScriptsVolumeComponentEditor.OnEditorReload                                                       :        1 samples, Peak.  27.4 ms (1.0x), Avg.  27.4 ms, Total. 27.41 ms (0.0%)
2023-07-17T15:44:14.3500458Z [Performance] DidReloadScriptsLookDev.OnEditorReload                                                                     :        1 samples, Peak.  4.43 ms (1.0x), Avg.  4.43 ms, Total. 4.426 ms (0.0%)
2023-07-17T15:44:14.3501573Z [Performance] DidReloadScriptsAdvancedDropdownWindow.OnScriptReload                                                      :        2 samples, Peak.  4.02 ms (1.0x), Avg.  3.95 ms, Total. 7.897 ms (0.0%)
2023-07-17T15:44:14.3502688Z [Performance] DidReloadScriptsPhotonEditor.OnDidReloadScripts                                                            :        1 samples, Peak.  65.9 us (1.0x), Avg.  65.9 us, Total. 65.90 us (0.0%)
2023-07-17T15:44:14.3503816Z [Performance] DidReloadScriptsTestListCache.ScriptReloaded                                                               :        1 samples, Peak.  1.98 ms (1.0x), Avg.  1.98 ms, Total. 1.983 ms (0.0%)
2023-07-17T15:44:14.3504928Z [Performance] DidReloadScriptsTestRunnerWindow.CompilationCallback                                                       :        1 samples, Peak.   244 us (1.0x), Avg.   244 us, Total. 243.8 us (0.0%)
2023-07-17T15:44:14.3506169Z [Performance] AssemblyReloadEvents.afterAssemblyReload: UnityEditor.U2D.Animation.BoneGizmo.OnAfterAssemblyReload        :        1 samples, Peak.  1.04 ms (1.0x), Avg.  1.04 ms, Total. 1.041 ms (0.0%)
2023-07-17T15:44:14.3507369Z [Performance] AssetPresetPreprocessor.OnPreprocessAsset                                                                  :      395 samples, Peak.   361 ms (393.5x), Avg.   917 us, Total. 362.2 ms (0.0%)
2023-07-17T15:44:14.3508545Z [Performance] SpriteLibrarySourceAssetPostProcessor.OnPreprocessAsset                                                    :      395 samples, Peak.   336 us (46.5x), Avg.  7.23 us, Total. 2.858 ms (0.0%)
2023-07-17T15:44:14.3509693Z [Performance] SpritePostProcess.OnPreprocessAsset                                                                        :      395 samples, Peak.  2.29 ms (83.9x), Avg.  27.3 us, Total. 10.78 ms (0.0%)
2023-07-17T15:44:14.3510730Z [Performance] ShaderImporter.Import                                                                                      :       67 samples, Peak.   233 ms (4.4x), Avg.  53.1 ms, Total. 3.560 s (0.2%)
2023-07-17T15:44:14.3511799Z [Performance] Light2DPostProcess.OnPostprocessSprites                                                                    :        3 samples, Peak.  5.37 ms (1.2x), Avg.  4.56 ms, Total. 13.67 ms (0.0%)
2023-07-17T15:44:14.3512878Z [Performance] SpritePostProcess.OnPostprocessSprites                                                                     :        3 samples, Peak.  19.3 ms (2.2x), Avg.  8.89 ms, Total. 26.67 ms (0.0%)
2023-07-17T15:44:14.3514143Z [Performance] SceneDataContainer.TransformHierarchyChangedSetParentCallback                                              :      207 samples, Peak.  21.8 us (25.6x), Avg.   852 ns, Total. 176.4 us (0.0%)
2023-07-17T15:44:14.3515372Z [Performance] SceneVisibilityState.IsFlagSetInParents                                                                    :      501 samples, Peak.  2.30 us (6.9x), Avg.   333 ns, Total. 167.0 us (0.0%)
2023-07-17T15:44:14.3516429Z [Performance] AssetDatabase.ImportAssets                                                                                 :       24 samples, Peak.   894 ms (8.1x), Avg.   111 ms, Total. 2.654 s (0.2%)
2023-07-17T15:44:14.3517624Z [Performance] EditorApplication.projectChanged: UnityEngine.InputSystem.LowLevel.NativeInputRuntime.OnProjectChanged     :        5 samples, Peak.   373 us (4.8x), Avg.  78.2 us, Total. 390.8 us (0.0%)
2023-07-17T15:44:14.3518958Z [Performance] EditorApplication.projectChanged: UnityEditor.Audio.MixerEffectDefinitionReloader.OnProjectChanged         :        5 samples, Peak.  1.39 ms (1.7x), Avg.   839 us, Total. 4.197 ms (0.0%)
2023-07-17T15:44:14.3520381Z [Performance] UtilityWindowPostProcessor.OnPostprocessAllAssets                                                          :       16 samples, Peak.  1.90 ms (7.9x), Avg.   240 us, Total. 3.840 ms (0.0%)
2023-07-17T15:44:14.3521579Z [Performance] FacebookImporter.OnPostprocessAllAssets                                                                    :       16 samples, Peak.  60.3 ms (7.9x), Avg.  7.59 ms, Total. 121.5 ms (0.0%)
2023-07-17T15:44:14.3522692Z [Performance] GenerateXmlFromGoogleServicesJson.OnPostprocessAllAssets                                                   :       16 samples, Peak.  2.25 ms (7.7x), Avg.   293 us, Total. 4.681 ms (0.0%)
2023-07-17T15:44:14.3523831Z [Performance] SettingsWindowUpdater.OnPostprocessAllAssets                                                               :       16 samples, Peak.   133 us (5.9x), Avg.  22.5 us, Total. 359.6 us (0.0%)
2023-07-17T15:44:14.3524936Z [Performance] XcodeProjectPatcher.OnPostprocessAllAssets                                                                 :       16 samples, Peak.   322 us (7.1x), Avg.  45.3 us, Total. 724.9 us (0.0%)
2023-07-17T15:44:14.3526056Z [Performance] AndroidManifestPatcher.OnPostprocessAllAssets                                                              :       16 samples, Peak.   241 us (3.9x), Avg.  62.6 us, Total. 1.002 ms (0.0%)
2023-07-17T15:44:14.3527130Z [Performance] IOSResolver.OnPostprocessAllAssets                                                                         :       16 samples, Peak.   475 us (7.4x), Avg.  64.3 us, Total. 1.028 ms (0.0%)
2023-07-17T15:44:14.3528211Z [Performance] PackageManagerResolver.OnPostprocessAllAssets                                                              :       16 samples, Peak.  2.65 s (8.0x), Avg.   331 ms, Total. 5.302 s (0.3%)
2023-07-17T15:44:14.3529319Z [Performance] VersionHandlerImpl.OnPostprocessAllAssets                                                                  :       16 samples, Peak.   358 ms (2.1x), Avg.   168 ms, Total. 2.681 s (0.2%)
2023-07-17T15:44:14.3530421Z [Performance] PlayServicesResolver.OnPostprocessAllAssets                                                                :       16 samples, Peak.   954 us (2.4x), Avg.   400 us, Total. 6.408 ms (0.0%)
2023-07-17T15:44:14.3531537Z [Performance] TMPro_TexturePostProcessor.OnPostprocessAllAssets                                                          :       16 samples, Peak.  14.3 s (8.0x), Avg.  1.79 s, Total. 28.65 s (1.8%)
2023-07-17T15:44:14.3532639Z [Performance] AssetPostprocessor.OnPostprocessAllAssets                                                                  :       16 samples, Peak.  2.31 ms (7.9x), Avg.   293 us, Total. 4.693 ms (0.0%)
2023-07-17T15:44:14.3533728Z [Performance] BuilderAssetPostprocessor.OnPostprocessAllAssets                                                           :       16 samples, Peak.  76.8 ms (8.0x), Avg.  9.64 ms, Total. 154.3 ms (0.0%)
2023-07-17T15:44:14.3534990Z [Performance] AddressablesAssetPostProcessor.OnPostprocessAllAssets                                                      :       16 samples, Peak.  41.0 ms (7.9x), Avg.  5.16 ms, Total. 82.63 ms (0.0%)
2023-07-17T15:44:14.3536155Z [Performance] ArtifactBrowserPostProcessor.OnPostprocessAllAssets                                                        :       16 samples, Peak.  1.09 ms (7.7x), Avg.   141 us, Total. 2.258 ms (0.0%)
2023-07-17T15:44:14.3537233Z [Performance] AssetEvents.OnPostprocessAllAssets                                                                         :       32 samples, Peak.   306 us (8.0x), Avg.  38.2 us, Total. 1.223 ms (0.0%)
2023-07-17T15:44:14.3538294Z [Performance] AudioMixerPostprocessor.OnPostprocessAllAssets                                                             :       16 samples, Peak.   716 us (7.7x), Avg.  93.5 us, Total. 1.496 ms (0.0%)
2023-07-17T15:44:14.3539467Z [Performance] StyleCatalogPostProcessor.OnPostprocessAllAssets                                                           :       16 samples, Peak.  36.5 ms (8.0x), Avg.  4.57 ms, Total. 73.15 ms (0.0%)
2023-07-17T15:44:14.3540564Z [Performance] BuildCatalog                                                                                               :        1 samples, Peak.  33.6 ms (1.0x), Avg.  33.6 ms, Total. 33.63 ms (0.0%)
2023-07-17T15:44:14.3541610Z [Performance] LocalizationAssetPostProcessor.OnPostprocessAllAssets                                                      :       16 samples, Peak.  61.9 ms (8.0x), Avg.  7.78 ms, Total. 124.5 ms (0.0%)
2023-07-17T15:44:14.3542742Z [Performance] ModelImporterPostProcessor.OnPostprocessAllAssets                                                          :       16 samples, Peak.  31.7 ms (7.9x), Avg.  4.00 ms, Total. 63.94 ms (0.0%)
2023-07-17T15:44:14.3543853Z [Performance] MaterialPostprocessor.OnPostprocessAllAssets                                                               :       32 samples, Peak.  25.6 ms (8.0x), Avg.  3.21 ms, Total. 102.8 ms (0.0%)
2023-07-17T15:44:14.3545007Z [Performance] RetainedModeAssetPostprocessor.OnPostprocessAllAssets                                                      :       16 samples, Peak.  4.64 ms (7.8x), Avg.   594 us, Total. 9.512 ms (0.0%)
2023-07-17T15:44:14.3546117Z [Performance] AssetChangedListener.OnPostprocessAllAssets                                                                :       16 samples, Peak.  50.2 ms (6.1x), Avg.  8.22 ms, Total. 131.6 ms (0.0%)
2023-07-17T15:44:14.3547182Z [Performance] PostProcessor.OnPostprocessAllAssets                                                                       :       16 samples, Peak.  32.4 ms (7.9x), Avg.  4.08 ms, Total. 65.24 ms (0.0%)
2023-07-17T15:44:14.3548300Z [Performance] ShaderGraphAssetPostProcessor.OnPostprocessAllAssets                                                       :       16 samples, Peak.   160 ms (7.9x), Avg.  20.1 ms, Total. 322.3 ms (0.0%)
2023-07-17T15:44:14.3549435Z [Performance] SpeedTreePostProcessor.OnPostprocessAllAssets                                                              :       16 samples, Peak.  25.1 ms (8.0x), Avg.  3.15 ms, Total. 50.41 ms (0.0%)
2023-07-17T15:44:14.3550550Z [Performance] TextAssetPostProcessor.OnPostprocessAllAssets                                                              :       16 samples, Peak.  10.1 ms (7.9x), Avg.  1.28 ms, Total. 20.53 ms (0.0%)
2023-07-17T15:44:14.3551652Z [Performance] PSDImportPostProcessor.OnPostprocessAllAssets                                                              :       16 samples, Peak.   702 us (6.4x), Avg.   109 us, Total. 1.744 ms (0.0%)
2023-07-17T15:44:14.3552780Z [Performance] SpriteEditorTexturePostprocessor.OnPostprocessAllAssets                                                    :       16 samples, Peak.  7.54 ms (2.3x), Avg.  3.34 ms, Total. 53.41 ms (0.0%)
2023-07-17T15:44:14.3553989Z [Performance] UIDocumentAssetPostProcessor.OnPostprocessAllAssets                                                        :       16 samples, Peak.  2.44 ms (7.7x), Avg.   317 us, Total. 5.071 ms (0.0%)
2023-07-17T15:44:14.3555143Z [Performance] AssetPathToTypes.OnPostprocessAllAssets                                                                    :       16 samples, Peak.   495 us (7.4x), Avg.  66.4 us, Total. 1.063 ms (0.0%)
2023-07-17T15:44:14.3556235Z [Performance] GraphRenameFixAssetProcessor.OnPostprocessAllAssets                                                        :       16 samples, Peak.   301 us (7.2x), Avg.  41.7 us, Total. 666.8 us (0.0%)
2023-07-17T15:44:14.3557364Z [Performance] NodeGraphImporter.OnPostprocessAllAssets                                                                   :       16 samples, Peak.  2.88 ms (7.7x), Avg.   374 us, Total. 5.979 ms (0.0%)
2023-07-17T15:44:14.3558433Z [Performance] SyncVS.PostprocessSyncProject                                                                              :        8 samples, Peak.   384 us (7.9x), Avg.  48.9 us, Total. 390.8 us (0.0%)
2023-07-17T15:44:14.3560090Z [Performance] Application.ImportPackagesAndSetTemplateWhenCreatingProject                                                :        1 samples, Peak.  22.7 ms (1.0x), Avg.  22.7 ms, Total. 22.74 ms (0.0%)
2023-07-17T15:44:14.3561289Z [Performance] Application.SyncCurrentColorSpace                                                                          :        1 samples, Peak.   500 ns (1.0x), Avg.   500 ns, Total. 500.0 ns (0.0%)
2023-07-17T15:44:14.3562322Z [Performance] Application.OnUsbDevicesChanged                                                                            :        1 samples, Peak.  1.25 ms (1.0x), Avg.  1.25 ms, Total. 1.247 ms (0.0%)
2023-07-17T15:44:14.3563343Z [Performance] Application.AssetInstanceCacheUpdate                                                                       :        1 samples, Peak.   700 ns (1.0x), Avg.   700 ns, Total. 700.0 ns (0.0%)
2023-07-17T15:44:14.3564390Z [Performance] Application.UnityExtensions.Initialize                                                                     :        1 samples, Peak.  4.48 ms (1.0x), Avg.  4.48 ms, Total. 4.485 ms (0.0%)
2023-07-17T15:44:14.3565456Z [Performance] Application.InitializeManagedCompilationPipeline                                                           :        1 samples, Peak.   359 ms (1.0x), Avg.   359 ms, Total. 359.3 ms (0.0%)
2023-07-17T15:44:14.3566501Z [Performance] Application.ExecuteStartups                                                                                :        1 samples, Peak.  89.3 ms (1.0x), Avg.  89.3 ms, Total. 89.33 ms (0.0%)
2023-07-17T15:44:14.3567498Z [Performance] Menu.RegisterMenuInterface                                                                                 :       26 samples, Peak.  2.50 us (6.4x), Avg.   392 ns, Total. 10.20 us (0.0%)
2023-07-17T15:44:14.3568508Z [Performance] Gizmo.RebuildRenderers                                                                                     :        2 samples, Peak.  86.1 ms (1.8x), Avg.  47.2 ms, Total. 94.39 ms (0.0%)
2023-07-17T15:44:14.3569514Z [Performance] Gizmo.AddGizmoRenderers                                                                                    :      402 samples, Peak.  4.64 ms (144.4x), Avg.  32.1 us, Total. 12.91 ms (0.0%)
2023-07-17T15:44:14.3570533Z [Performance] Application.editorInitializingProject                                                                      :        1 samples, Peak.   741 us (1.0x), Avg.   741 us, Total. 740.6 us (0.0%)
2023-07-17T15:44:14.3571548Z [Performance] Application.InitializeMenu                                                                                 :        1 samples, Peak.  2.37 s (1.0x), Avg.  2.37 s, Total. 2.370 s (0.1%)
2023-07-17T15:44:14.3572534Z [Performance] Menu.RebuildAll                                                                                            :        1 samples, Peak.  2.37 s (1.0x), Avg.  2.37 s, Total. 2.370 s (0.1%)
2023-07-17T15:44:14.3573606Z [Performance] Menu.BuildRegisteredMenuInterfaces                                                                         :        1 samples, Peak.  2.37 s (1.0x), Avg.  2.37 s, Total. 2.368 s (0.1%)
2023-07-17T15:44:14.3574659Z [Performance] UpdateAllMenus                                                                                             :        1 samples, Peak.  2.07 ms (1.0x), Avg.  2.07 ms, Total. 2.072 ms (0.0%)
2023-07-17T15:44:14.3575823Z [Performance] EditorSceneManager.sceneClosing: UnityEditor.SceneVisibilityManager.EditorSceneManagerOnSceneClosing       :        4 samples, Peak.   896 us (3.2x), Avg.   281 us, Total. 1.123 ms (0.0%)
2023-07-17T15:44:14.3577139Z [Performance] EditorSceneManager.activeSceneChangedInEditMode: callback in UnityEditor.Search.SearchMonitor              :        4 samples, Peak.  85.9 us (3.8x), Avg.  22.8 us, Total. 91.30 us (0.0%)
2023-07-17T15:44:14.3578312Z [Performance] GUIView.RepaintAll.PlayerLoopController                                                                    :        4 samples, Peak.  4.60 us (2.4x), Avg.  1.95 us, Total. 7.800 us (0.0%)
2023-07-17T15:44:14.3579630Z [Performance] EditorSceneManager.newSceneCreated: UnityEditor.SceneVisibilityManager.EditorSceneManagerOnNewSceneCreated :        3 samples, Peak.  3.44 ms (3.0x), Avg.  1.16 ms, Total. 3.476 ms (0.0%)
2023-07-17T15:44:14.3581033Z [Performance] EditorSceneManager.newSceneCreated: UnityEditor.SceneManagement.StageNavigationManager.OnNewSceneCreated   :        3 samples, Peak.  88.8 us (2.9x), Avg.  30.9 us, Total. 92.80 us (0.0%)
2023-07-17T15:44:14.3582275Z [Performance] Application.InvokeFinishedLoadingProject                                                                   :        1 samples, Peak.  47.5 ms (1.0x), Avg.  47.5 ms, Total. 47.54 ms (0.0%)
2023-07-17T15:44:14.3583334Z [Performance] ProcessService.OnProjectLoaded                                                                             :        1 samples, Peak.   130 us (1.0x), Avg.   130 us, Total. 129.9 us (0.0%)
2023-07-17T15:44:14.3584370Z [Performance] AssetDatabase.Refresh                                                                                      :        3 samples, Peak.  1.71 s (1.5x), Avg.  1.13 s, Total. 3.394 s (0.2%)
2023-07-17T15:44:14.3585394Z [Performance] GenerateAssemblyTypeInfos                                                                                  :        4 samples, Peak.  4.17 s (1.3x), Avg.  3.21 s, Total. 12.85 s (0.8%)
2023-07-17T15:44:14.3586380Z [Performance] AssetDatabase.ImportAsset                                                                                  :        1 samples, Peak.  9.25 s (1.0x), Avg.  9.25 s, Total. 9.252 s (0.6%)
2023-07-17T15:44:14.3587386Z [Performance] Inspector.InitOrRebuild                                                                                    :        2 samples, Peak.  1.48 ms (1.7x), Avg.   888 us, Total. 1.777 ms (0.0%)
2023-07-17T15:44:14.3588445Z [Performance] Application.Shutdown.CollabTerminate                                                                       :        1 samples, Peak.  11.9 us (1.0x), Avg.  11.9 us, Total. 11.90 us (0.0%)
2023-07-17T15:44:14.3589467Z [Performance] Application.Shutdown.CollabCleanup                                                                         :        1 samples, Peak.  1.73 ms (1.0x), Avg.  1.73 ms, Total. 1.726 ms (0.0%)
2023-07-17T15:44:14.3590550Z [Performance] Application.Shutdown.SaveDefaultWindowPreferences                                                          :        1 samples, Peak.   435 us (1.0x), Avg.   435 us, Total. 435.1 us (0.0%)
2023-07-17T15:44:14.3591674Z [Performance] Application.Shutdown.SaveSceneManagerSetup                                                                 :        1 samples, Peak.   134 us (1.0x), Avg.   134 us, Total. 133.6 us (0.0%)
2023-07-17T15:44:14.3592728Z [Performance] Application.Shutdown.CleanupAllContainerWindows                                                            :        1 samples, Peak.   700 ns (1.0x), Avg.   700 ns, Total. 700.0 ns (0.0%)
2023-07-17T15:44:14.3594111Z [Performance] EditorApplication.quitting: Unity.Burst.Editor.BurstLoader.OnEditorApplicationQuitting                     :        1 samples, Peak.  50.0 us (1.0x), Avg.  50.0 us, Total. 50.00 us (0.0%)
2023-07-17T15:44:14.3595358Z [Performance] EditorApplication.quitting: UnityEditor.Search.SearchMonitor.OnQuitting                                    :        1 samples, Peak.  3.78 ms (1.0x), Avg.  3.78 ms, Total. 3.785 ms (0.0%)
2023-07-17T15:44:14.3596526Z [Performance] EditorApplication.quitting: callback in UnityEditor.TextCore.Text.EditorEventCallbacks                     :        1 samples, Peak.  19.6 ms (1.0x), Avg.  19.6 ms, Total. 19.58 ms (0.0%)
2023-07-17T15:44:14.3597728Z [Performance] EditorApplication.quitting: ThreadingManager.WaitForOutstandingTasks                                       :        1 samples, Peak.  11.9 us (1.0x), Avg.  11.9 us, Total. 11.90 us (0.0%)
2023-07-17T15:44:14.3598842Z [Performance] Application.Shutdown.PauseProfilerSession                                                                  :        1 samples, Peak.   990 us (1.0x), Avg.   990 us, Total. 990.0 us (0.0%)
2023-07-17T15:44:14.3600099Z [Performance] Application.Shutdown.PauseAssetImportWorkers                                                               :        1 samples, Peak.   663 us (1.0x), Avg.   663 us, Total. 663.3 us (0.0%)
2023-07-17T15:44:14.3601212Z [Performance] Application.Shutdown.SaveAssets                                                                            :        1 samples, Peak.  7.32 s (1.0x), Avg.  7.32 s, Total. 7.319 s (0.5%)
2023-07-17T15:44:14.3602270Z [Performance] Application.Shutdown.CleanupRenderPipeline                                                                 :        1 samples, Peak.  5.50 us (1.0x), Avg.  5.50 us, Total. 5.500 us (0.0%)
2023-07-17T15:44:14.3603347Z [Performance] Application.Shutdown.StopPreloadManager                                                                    :        1 samples, Peak.  10.1 ms (1.0x), Avg.  10.1 ms, Total. 10.07 ms (0.0%)
2023-07-17T15:44:14.3604399Z [Performance] Application.Shutdown.DestroyWorld                                                                          :        1 samples, Peak.  4.55 ms (1.0x), Avg.  4.55 ms, Total. 4.545 ms (0.0%)
2023-07-17T15:44:14.3605430Z [Performance] Application.Shutdown.CleanupAfterLoad                                                                      :        1 samples, Peak.   389 ms (1.0x), Avg.   389 ms, Total. 388.7 ms (0.0%)
2023-07-17T15:44:14.3606451Z [Performance] Application.Shutdown.Progress                                                                              :        1 samples, Peak.   256 us (1.0x), Avg.   256 us, Total. 256.4 us (0.0%)
2023-07-17T15:44:14.3607486Z [Performance] Application.Shutdown.GICleanupManagers                                                                     :        1 samples, Peak.  6.22 ms (1.0x), Avg.  6.22 ms, Total. 6.224 ms (0.0%)
2023-07-17T15:44:14.3608514Z [Performance] Application.Shutdown.MenuCleanupClass                                                                      :        1 samples, Peak.  5.07 ms (1.0x), Avg.  5.07 ms, Total. 5.067 ms (0.0%)
2023-07-17T15:44:14.3609558Z [Performance] Application.Shutdown.ADBSaveStateBeforeShutdown                                                            :        1 samples, Peak.  9.40 us (1.0x), Avg.  9.40 us, Total. 9.400 us (0.0%)
2023-07-17T15:44:14.3610612Z [Performance] Application.Shutdown.RemoteShutdown                                                                        :        1 samples, Peak.   900 ns (1.0x), Avg.   900 ns, Total. 900.0 ns (0.0%)
2023-07-17T15:44:14.3611646Z [Performance] Application.Shutdown.CleanupVCProvider                                                                     :        1 samples, Peak.   502 us (1.0x), Avg.   502 us, Total. 502.1 us (0.0%)
2023-07-17T15:44:14.3612669Z [Performance] Application.Shutdown.InputShutdown                                                                         :        1 samples, Peak.   395 us (1.0x), Avg.   395 us, Total. 394.5 us (0.0%)
2023-07-17T15:44:14.3613817Z [Performance] Application.Shutdown.GizmoManagerDestroy                                                                   :        1 samples, Peak.   745 us (1.0x), Avg.   745 us, Total. 745.5 us (0.0%)
2023-07-17T15:44:14.3614893Z [Performance] Application.Shutdown.ProfilerSession                                                                       :        1 samples, Peak.  3.45 ms (1.0x), Avg.  3.45 ms, Total. 3.450 ms (0.0%)
2023-07-17T15:44:14.3615965Z [Performance] Application.Shutdown.ReleaseGfxWindowOnAllGUIViews                                                         :        1 samples, Peak.  1.00 us (1.0x), Avg.  1.00 us, Total. 1.000 us (0.0%)
2023-07-17T15:44:14.3617050Z [Performance] Application.Shutdown.CleanupEngine                                                                         :        1 samples, Peak.  1.36 s (1.0x), Avg.  1.36 s, Total. 1.359 s (0.1%)
2023-07-17T15:44:14.3618144Z [Performance] Application.Shutdown.CleanupAssetDatabase                                                                  :        1 samples, Peak.  3.76 s (1.0x), Avg.  3.76 s, Total. 3.762 s (0.2%)
2023-07-17T15:44:14.3619274Z [Performance] Application.Shutdown.ScriptCompilationCleanUp                                                              :        1 samples, Peak.   112 us (1.0x), Avg.   112 us, Total. 112.0 us (0.0%)
2023-07-17T15:44:14.3620337Z [Performance] Application.Shutdown.DestroyJobSystem                                                                      :        1 samples, Peak.   176 us (1.0x), Avg.   176 us, Total. 175.8 us (0.0%)
2023-07-17T15:44:14.3621437Z [Performance] Application.Shutdown.CleanupPersistentManager                                                              :        1 samples, Peak.  43.7 ms (1.0x), Avg.  43.7 ms, Total. 43.67 ms (0.0%)
2023-07-17T15:44:14.3622529Z [Performance] Application.Shutdown.CleanupAsyncReadManager                                                               :        1 samples, Peak.  1.07 ms (1.0x), Avg.  1.07 ms, Total. 1.069 ms (0.0%)
2023-07-17T15:44:14.3623574Z [Performance] Application.Shutdown.CleanupMono                                                                           :        1 samples, Peak.   841 ms (1.0x), Avg.   841 ms, Total. 841.4 ms (0.1%)
2023-07-17T15:44:14.3624601Z [Performance] Application.Shutdown.CleanupStdConverters                                                                  :        1 samples, Peak.  22.8 us (1.0x), Avg.  22.8 us, Total. 22.80 us (0.0%)
2023-07-17T15:44:14.3625714Z [Performance] Application.Shutdown.UnloadAllPlatformSupportModuleNativeDlls                                              :        1 samples, Peak.   700 ns (1.0x), Avg.   700 ns, Total. 700.0 ns (0.0%)
2023-07-17T15:44:14.3626902Z [Performance] Application.Shutdown.UnloadAllPlatformSupportNativeLibraries                                               :        1 samples, Peak.   300 ns (1.0x), Avg.   300 ns, Total. 300.0 ns (0.0%)
2023-07-17T15:44:14.3628035Z [Performance] Application.Shutdown.CleanupAutoDocumentation                                                              :        1 samples, Peak.  8.42 ms (1.0x), Avg.  8.42 ms, Total. 8.419 ms (0.0%)
2023-07-17T15:44:14.3629119Z [Performance] Application.Shutdown.ShaderNameManagerDestroy                                                              :        1 samples, Peak.   714 us (1.0x), Avg.   714 us, Total. 713.6 us (0.0%)
2023-07-17T15:44:14.3630191Z [Performance] Application.Shutdown.CleanupCacheServer                                                                    :        1 samples, Peak.   300 ns (1.0x), Avg.   300 ns, Total. 300.0 ns (0.0%)
2023-07-17T15:44:14.3631235Z [Performance] Application.Shutdown.Virtualization_Shutdown                                                               :        1 samples, Peak.   800 ns (1.0x), Avg.   800 ns, Total. 800.0 ns (0.0%)
2023-07-17T15:44:14.3632315Z [Performance] Application.Shutdown.DevConnections                                                                        :        1 samples, Peak.  53.7 us (1.0x), Avg.  53.7 us, Total. 53.70 us (0.0%)
2023-07-17T15:44:14.4524899Z [Package Manager] Server::Kill -- Server was shutdown
2023-07-17T15:44:14.6139506Z Checking for leaked weakptr:
2023-07-17T15:44:14.6140334Z   Found no leaked weakptrs.
2023-07-17T15:44:14.6558338Z Memory Statistics:
2023-07-17T15:44:14.6558976Z [ALLOC_TEMP_TLS] TLS Allocator
2023-07-17T15:44:14.6559667Z   StackAllocators : 
2023-07-17T15:44:14.6560235Z     [ALLOC_TEMP_CurlRequest]
2023-07-17T15:44:14.6560813Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6561399Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6561989Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6562540Z       Overflow Count 0
2023-07-17T15:44:14.6563058Z     [ALLOC_TEMP_MAIN]
2023-07-17T15:44:14.6564033Z       Peak usage frame count: [16.0 MB-32.0 MB]: 2 frames, [64.0 MB-128.0 MB]: 2 frames
2023-07-17T15:44:14.6564739Z       Initial Block Size 16.0 MB
2023-07-17T15:44:14.6565322Z       Current Block Size 128.0 MB
2023-07-17T15:44:14.6565924Z       Peak Allocated Bytes 96.0 MB
2023-07-17T15:44:14.6566490Z       Overflow Count 77
2023-07-17T15:44:14.6567301Z     [ALLOC_TEMP_Background Job.Worker 8]
2023-07-17T15:44:14.6568018Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6568596Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6569166Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6569720Z       Overflow Count 0
2023-07-17T15:44:14.6570319Z     [ALLOC_TEMP_Background Job.Worker 10]
2023-07-17T15:44:14.6570932Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6571500Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6572071Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6572788Z       Overflow Count 0
2023-07-17T15:44:14.6573372Z     [ALLOC_TEMP_Background Job.Worker 6]
2023-07-17T15:44:14.6573988Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6574558Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6575141Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6575690Z       Overflow Count 0
2023-07-17T15:44:14.6576380Z     [ALLOC_TEMP_AUDIO_ALSA Mixer]
2023-07-17T15:44:14.6576976Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6577559Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6578151Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6578706Z       Overflow Count 0
2023-07-17T15:44:14.6579224Z     [ALLOC_TEMP_] x 5
2023-07-17T15:44:14.6579868Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6580425Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6581005Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6581548Z       Overflow Count 0
2023-07-17T15:44:14.6582132Z     [ALLOC_TEMP_Background Job.Worker 1]
2023-07-17T15:44:14.6582739Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6583298Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6583858Z       Peak Allocated Bytes 285 B
2023-07-17T15:44:14.6584404Z       Overflow Count 0
2023-07-17T15:44:14.6585047Z     [ALLOC_TEMP_AssetDatabase.FileHasherReader] x 4
2023-07-17T15:44:14.6585697Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6586257Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6586844Z       Peak Allocated Bytes 0.5 KB
2023-07-17T15:44:14.6587399Z       Overflow Count 0
2023-07-17T15:44:14.6588008Z     [ALLOC_TEMP_Background Job.Worker 11]
2023-07-17T15:44:14.6588618Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6589183Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6589837Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6590379Z       Overflow Count 0
2023-07-17T15:44:14.6590961Z     [ALLOC_TEMP_Background Job.Worker 3]
2023-07-17T15:44:14.6591561Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6592127Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6592704Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6593254Z       Overflow Count 0
2023-07-17T15:44:14.6593831Z     [ALLOC_TEMP_BatchDeleteObjects]
2023-07-17T15:44:14.6594546Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6595112Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6595687Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6596224Z       Overflow Count 0
2023-07-17T15:44:14.6596816Z     [ALLOC_TEMP_AUDIO_FMOD stream thread]
2023-07-17T15:44:14.6597488Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6598059Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6598625Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6599292Z       Overflow Count 0
2023-07-17T15:44:14.6599891Z     [ALLOC_TEMP_CoreBusinessMetricsCache]
2023-07-17T15:44:14.6600507Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6601078Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6601674Z       Peak Allocated Bytes 8.0 KB
2023-07-17T15:44:14.6602238Z       Overflow Count 0
2023-07-17T15:44:14.6602810Z     [ALLOC_TEMP_REST Message Handler]
2023-07-17T15:44:14.6603420Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6603968Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6604539Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6605076Z       Overflow Count 0
2023-07-17T15:44:14.6605716Z     [ALLOC_TEMP_AssetDatabase.FileHasherHasher] x 4
2023-07-17T15:44:14.6606446Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6607104Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6607755Z       Peak Allocated Bytes 114 B
2023-07-17T15:44:14.6608313Z       Overflow Count 0
2023-07-17T15:44:14.6609019Z     [ALLOC_TEMP_AssetDatabase.IOService]
2023-07-17T15:44:14.6609631Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6610194Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6610780Z       Peak Allocated Bytes 33.3 KB
2023-07-17T15:44:14.6611342Z       Overflow Count 0
2023-07-17T15:44:14.6611935Z     [ALLOC_TEMP_Background Job.Worker 15]
2023-07-17T15:44:14.6612553Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6613118Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6613684Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6614241Z       Overflow Count 0
2023-07-17T15:44:14.6614822Z     [ALLOC_TEMP_Background Job.Worker 2]
2023-07-17T15:44:14.6615429Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6615991Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6616557Z       Peak Allocated Bytes 285 B
2023-07-17T15:44:14.6617106Z       Overflow Count 0
2023-07-17T15:44:14.6617693Z     [ALLOC_TEMP_Background Job.Worker 7]
2023-07-17T15:44:14.6618297Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6618853Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6619431Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6619968Z       Overflow Count 0
2023-07-17T15:44:14.6620547Z     [ALLOC_TEMP_BakingJobs.Worker 0]
2023-07-17T15:44:14.6621150Z       Initial Block Size 256.0 KB
2023-07-17T15:44:14.6621716Z       Current Block Size 256.0 KB
2023-07-17T15:44:14.6622288Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6622819Z       Overflow Count 0
2023-07-17T15:44:14.6623425Z     [ALLOC_TEMP_Loading.PreloadManager]
2023-07-17T15:44:14.6624043Z       Initial Block Size 32.0 MB
2023-07-17T15:44:14.6624614Z       Current Block Size 32.0 MB
2023-07-17T15:44:14.6625200Z       Peak Allocated Bytes 2.0 MB
2023-07-17T15:44:14.6625761Z       Overflow Count 0
2023-07-17T15:44:14.6626345Z     [ALLOC_TEMP_Profiler.Dispatcher]
2023-07-17T15:44:14.6626958Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6627520Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6628091Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6628631Z       Overflow Count 0
2023-07-17T15:44:14.6629232Z     [ALLOC_TEMP_Background Job.Worker 12]
2023-07-17T15:44:14.6629842Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6630398Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6630971Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6631507Z       Overflow Count 0
2023-07-17T15:44:14.6632060Z     [ALLOC_TEMP_HTTP REST Server]
2023-07-17T15:44:14.6632637Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6633198Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6633867Z       Peak Allocated Bytes 66 B
2023-07-17T15:44:14.6634412Z       Overflow Count 0
2023-07-17T15:44:14.6635054Z     [ALLOC_TEMP_AssetGarbageCollectorHelper]
2023-07-17T15:44:14.6635719Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6636280Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6636922Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6637462Z       Overflow Count 0
2023-07-17T15:44:14.6638033Z     [ALLOC_TEMP_Background Job.Worker 5]
2023-07-17T15:44:14.6638633Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6640777Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6641394Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6641938Z       Overflow Count 0
2023-07-17T15:44:14.6642493Z     [ALLOC_TEMP_CurlRequest]
2023-07-17T15:44:14.6643080Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6643794Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6644379Z       Peak Allocated Bytes 257 B
2023-07-17T15:44:14.6644922Z       Overflow Count 0
2023-07-17T15:44:14.6645529Z     [ALLOC_TEMP_Background Job.Worker 13]
2023-07-17T15:44:14.6646127Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6646705Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6647279Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6648038Z       Overflow Count 0
2023-07-17T15:44:14.6648697Z     [ALLOC_TEMP_Background Job.Worker 0]
2023-07-17T15:44:14.6649288Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6649860Z       Current Block Size 216.0 KB
2023-07-17T15:44:14.6650454Z       Peak Allocated Bytes 123.9 KB
2023-07-17T15:44:14.6651016Z       Overflow Count 3
2023-07-17T15:44:14.6651590Z     [ALLOC_TEMP_Background Job.Worker 4]
2023-07-17T15:44:14.6652189Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6652847Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6653420Z       Peak Allocated Bytes 285 B
2023-07-17T15:44:14.6654052Z       Overflow Count 0
2023-07-17T15:44:14.6654611Z     [ALLOC_TEMP_Job.Worker 0]
2023-07-17T15:44:14.6655184Z       Initial Block Size 256.0 KB
2023-07-17T15:44:14.6655810Z       Current Block Size 1.5 MB
2023-07-17T15:44:14.6656376Z       Peak Allocated Bytes 1.5 MB
2023-07-17T15:44:14.6657011Z       Overflow Count 2
2023-07-17T15:44:14.6657599Z     [ALLOC_TEMP_Background Job.Worker 14]
2023-07-17T15:44:14.6658205Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6658834Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6659392Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6659933Z       Overflow Count 0
2023-07-17T15:44:14.6660510Z     [ALLOC_TEMP_Background Job.Worker 9]
2023-07-17T15:44:14.6661112Z       Initial Block Size 32.0 KB
2023-07-17T15:44:14.6661658Z       Current Block Size 32.0 KB
2023-07-17T15:44:14.6662222Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6662783Z       Overflow Count 0
2023-07-17T15:44:14.6663336Z     [ALLOC_TEMP_EnlightenWorker]
2023-07-17T15:44:14.6663913Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6664542Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6665103Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6665650Z       Overflow Count 0
2023-07-17T15:44:14.6666225Z     [ALLOC_TEMP_BakingJobs.Worker 1]
2023-07-17T15:44:14.6666990Z       Initial Block Size 256.0 KB
2023-07-17T15:44:14.6667566Z       Current Block Size 256.0 KB
2023-07-17T15:44:14.6668212Z       Peak Allocated Bytes 0 B
2023-07-17T15:44:14.6668749Z       Overflow Count 0
2023-07-17T15:44:14.6669311Z     [ALLOC_TEMP_Loading.AsyncRead]
2023-07-17T15:44:14.6669903Z       Initial Block Size 64.0 KB
2023-07-17T15:44:14.6670448Z       Current Block Size 64.0 KB
2023-07-17T15:44:14.6671011Z       Peak Allocated Bytes 128 B
2023-07-17T15:44:14.6671642Z       Overflow Count 0
2023-07-17T15:44:14.6672161Z [ALLOC_MEMORYPROFILER]
2023-07-17T15:44:14.6672983Z   Peak usage frame count: [2.0 MB-4.0 MB]: 4 frames
2023-07-17T15:44:14.6673618Z   Requested Block Size 1.0 MB
2023-07-17T15:44:14.6674153Z   Peak Block count 5
2023-07-17T15:44:14.6674716Z   Peak Allocated memory 4.0 MB
2023-07-17T15:44:14.6675503Z   Peak Large allocation bytes 0 B
2023-07-17T15:44:14.6676111Z [ALLOC_DEFAULT] Dual Thread Allocator
2023-07-17T15:44:14.6676753Z   Peak main deferred allocation count 3755
2023-07-17T15:44:14.6677323Z     [ALLOC_BUCKET]
2023-07-17T15:44:14.6677863Z       Large Block size 32.0 MB
2023-07-17T15:44:14.6678415Z       Used Block count 2
2023-07-17T15:44:14.6679261Z       Peak Allocated bytes 22.9 MB
2023-07-17T15:44:14.6679839Z     [ALLOC_DEFAULT_MAIN]
2023-07-17T15:44:14.6680551Z       Peak usage frame count: [256.0 MB-0.50 GB]: 4 frames
2023-07-17T15:44:14.6681185Z       Requested Block Size 16.0 MB
2023-07-17T15:44:14.6681750Z       Peak Block count 25
2023-07-17T15:44:14.6682317Z       Peak Allocated memory 504.0 MB
2023-07-17T15:44:14.6682945Z       Peak Large allocation bytes 270.2 MB
2023-07-17T15:44:14.6683525Z     [ALLOC_DEFAULT_THREAD]
2023-07-17T15:44:14.6684302Z       Peak usage frame count: [4.0 MB-8.0 MB]: 1 frames, [8.0 MB-16.0 MB]: 3 frames
2023-07-17T15:44:14.6684986Z       Requested Block Size 16.0 MB
2023-07-17T15:44:14.6685652Z       Peak Block count 1
2023-07-17T15:44:14.6686221Z       Peak Allocated memory 14.9 MB
2023-07-17T15:44:14.6686830Z       Peak Large allocation bytes 0 B
2023-07-17T15:44:14.6687401Z [ALLOC_TEMP_JOB_1_FRAME]
2023-07-17T15:44:14.6688038Z   Initial Block Size 2.0 MB
2023-07-17T15:44:14.6688626Z   Used Block Count 1
2023-07-17T15:44:14.6689260Z   Overflow Count (too large) 0
2023-07-17T15:44:14.6689818Z   Overflow Count (full) 0
2023-07-17T15:44:14.6690349Z [ALLOC_TEMP_JOB_2_FRAMES]
2023-07-17T15:44:14.6690886Z   Initial Block Size 2.0 MB
2023-07-17T15:44:14.6691414Z   Used Block Count 1
2023-07-17T15:44:14.6691956Z   Overflow Count (too large) 0
2023-07-17T15:44:14.6692512Z   Overflow Count (full) 0
2023-07-17T15:44:14.6693077Z [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
2023-07-17T15:44:14.6693661Z   Initial Block Size 2.0 MB
2023-07-17T15:44:14.6694196Z   Used Block Count 64
2023-07-17T15:44:14.6694745Z   Overflow Count (too large) 11
2023-07-17T15:44:14.6695305Z   Overflow Count (full) 1
2023-07-17T15:44:14.6695968Z [ALLOC_TEMP_JOB_ASYNC (Background)]
2023-07-17T15:44:14.6696548Z   Initial Block Size 1.0 MB
2023-07-17T15:44:14.6697072Z   Used Block Count 5
2023-07-17T15:44:14.6697612Z   Overflow Count (too large) 1
2023-07-17T15:44:14.6698158Z   Overflow Count (full) 0
2023-07-17T15:44:14.6698728Z [ALLOC_GFX] Dual Thread Allocator
2023-07-17T15:44:14.6699433Z   Peak main deferred allocation count 1917
2023-07-17T15:44:14.6700008Z     [ALLOC_BUCKET]
2023-07-17T15:44:14.6700539Z       Large Block size 32.0 MB
2023-07-17T15:44:14.6701088Z       Used Block count 2
2023-07-17T15:44:14.6701646Z       Peak Allocated bytes 22.9 MB
2023-07-17T15:44:14.6702187Z     [ALLOC_GFX_MAIN]
2023-07-17T15:44:14.6703046Z       Peak usage frame count: [32.0 MB-64.0 MB]: 1 frames, [64.0 MB-128.0 MB]: 1 frames, [128.0 MB-256.0 MB]: 2 frames
2023-07-17T15:44:14.6703772Z       Requested Block Size 16.0 MB
2023-07-17T15:44:14.6704344Z       Peak Block count 12
2023-07-17T15:44:14.6704931Z       Peak Allocated memory 178.8 MB
2023-07-17T15:44:14.6705572Z       Peak Large allocation bytes 16.0 MB
2023-07-17T15:44:14.6713557Z     [ALLOC_GFX_THREAD]
2023-07-17T15:44:14.6714367Z       Peak usage frame count: [0-1.0 KB]: 4 frames
2023-07-17T15:44:14.6715014Z       Requested Block Size 16.0 MB
2023-07-17T15:44:14.6715596Z       Peak Block count 0
2023-07-17T15:44:14.6716151Z       Peak Allocated memory 0 B
2023-07-17T15:44:14.6716761Z       Peak Large allocation bytes 0 B
2023-07-17T15:44:14.6717396Z [ALLOC_CACHEOBJECTS] Dual Thread Allocator
2023-07-17T15:44:14.6718077Z   Peak main deferred allocation count 126048
2023-07-17T15:44:14.6718653Z     [ALLOC_BUCKET]
2023-07-17T15:44:14.6719327Z       Large Block size 32.0 MB
2023-07-17T15:44:14.6719892Z       Used Block count 2
2023-07-17T15:44:14.6720455Z       Peak Allocated bytes 22.9 MB
2023-07-17T15:44:14.6721049Z     [ALLOC_CACHEOBJECTS_MAIN]
2023-07-17T15:44:14.6721891Z       Peak usage frame count: [128.0 MB-256.0 MB]: 4 frames
2023-07-17T15:44:14.6722683Z       Requested Block Size 4.0 MB
2023-07-17T15:44:14.6723241Z       Peak Block count 44
2023-07-17T15:44:14.6723832Z       Peak Allocated memory 182.0 MB
2023-07-17T15:44:14.6724454Z       Peak Large allocation bytes 14.7 MB
2023-07-17T15:44:14.6725065Z     [ALLOC_CACHEOBJECTS_THREAD]
2023-07-17T15:44:14.6726101Z       Peak usage frame count: [0-1.0 KB]: 2 frames, [8.0 KB-16.0 KB]: 1 frames, [256.0 MB-0.50 GB]: 1 frames
2023-07-17T15:44:14.6726816Z       Requested Block Size 4.0 MB
2023-07-17T15:44:14.6727376Z       Peak Block count 5
2023-07-17T15:44:14.6727956Z       Peak Allocated memory 320.6 MB
2023-07-17T15:44:14.6728583Z       Peak Large allocation bytes 309.8 MB
2023-07-17T15:44:14.6729325Z [ALLOC_TYPETREE] Dual Thread Allocator
2023-07-17T15:44:14.6729987Z   Peak main deferred allocation count 41351
2023-07-17T15:44:14.6730553Z     [ALLOC_BUCKET]
2023-07-17T15:44:14.6731088Z       Large Block size 32.0 MB
2023-07-17T15:44:14.6731645Z       Used Block count 2
2023-07-17T15:44:14.6732302Z       Peak Allocated bytes 22.9 MB
2023-07-17T15:44:14.6732960Z     [ALLOC_TYPETREE_MAIN]
2023-07-17T15:44:14.6733659Z       Peak usage frame count: [64.0 MB-128.0 MB]: 4 frames
2023-07-17T15:44:14.6734301Z       Requested Block Size 2.0 MB
2023-07-17T15:44:14.6734965Z       Peak Block count 47
2023-07-17T15:44:14.6735697Z       Peak Allocated memory 90.6 MB
2023-07-17T15:44:14.6736398Z       Peak Large allocation bytes 0 B
2023-07-17T15:44:14.6736975Z     [ALLOC_TYPETREE_THREAD]
2023-07-17T15:44:14.6739511Z       Peak usage frame count: [0-1.0 KB]: 4 frames
2023-07-17T15:44:14.6740269Z       Requested Block Size 2.0 MB
2023-07-17T15:44:14.6740827Z       Peak Block count 1
2023-07-17T15:44:14.6741412Z       Peak Allocated memory 36.6 KB
2023-07-17T15:44:14.6742036Z       Peak Large allocation bytes 0 B
2023-07-17T15:44:14.6742616Z [ALLOC_PROFILER]
2023-07-17T15:44:14.6743306Z   Peak usage frame count: [256.0 KB-0.5 MB]: 4 frames
2023-07-17T15:44:14.6743939Z   Requested Block Size 16.0 MB
2023-07-17T15:44:14.6744486Z   Peak Block count 1
2023-07-17T15:44:14.6745062Z   Peak Allocated memory 465.8 KB
2023-07-17T15:44:14.6745664Z   Peak Large allocation bytes 0 B
2023-07-17T15:44:14.6746244Z     [ALLOC_PROFILER_BUCKET]
2023-07-17T15:44:14.6746818Z       Large Block size 32.0 MB
2023-07-17T15:44:14.6747385Z       Used Block count 1
2023-07-17T15:44:14.6747958Z       Peak Allocated bytes 6.5 KB
2023-07-17T15:44:14.6748512Z [ALLOC_PROFILER_EDITOR]
2023-07-17T15:44:14.6749170Z   Peak usage frame count: [0-1.0 KB]: 4 frames
2023-07-17T15:44:14.6749776Z   Requested Block Size 1.0 MB
2023-07-17T15:44:14.6750314Z   Peak Block count 0
2023-07-17T15:44:14.6750863Z   Peak Allocated memory 0 B
2023-07-17T15:44:14.6751451Z   Peak Large allocation bytes 0 B
2023-07-17T15:44:14.6752023Z     [ALLOC_PROFILER_BUCKET]
2023-07-17T15:44:14.6752598Z       Large Block size 32.0 MB
2023-07-17T15:44:14.6753153Z       Used Block count 1
2023-07-17T15:44:14.6753722Z       Peak Allocated bytes 6.5 KB
2023-07-17T15:44:14.6756450Z ##utp:{"type":"MemoryLeaks","version":2,"phase":"Immediate","time":1689608654654,"processId":105,"allocatedMemory":13870278,"memoryLabels":[{"Default":10063},{"Permanent":16120},{"Thread":1083180},{"Manager":17553},{"VertexData":191860},{"Geometry":280},{"Texture":160},{"Shader":111015},{"Material":24},{"GfxDevice":35536},{"Animation":312},{"Audio":5176},{"Font":8397460},{"FontEngine":336},{"Physics":289},{"Serialization":672},{"Input":26792},{"JobScheduler":200},{"Mono":40},{"ScriptingNativeRuntime":43520},{"BaseObject":1595164},{"Resource":944},{"Renderer":1936},{"Transform":48},{"File":81391},{"WebCam":24},{"Culling":40},{"Terrain":1025},{"Wind":24},{"String":18979},{"DynamicArray":200954},{"HashMap":77981},{"Utility":8611},{"Curl":3135},{"PoolAlloc":32192},{"AI":40},{"TypeTree":2064},{"ScriptManager":368},{"RuntimeInitializeOnLoadManager":72},{"Sprites":328718},{"SpriteAtlas":112},{"GI":3320},{"Unet":16},{"Director":7816},{"WebRequest":720},{"VR":45689},{"SceneManager":640},{"Video":72},{"LazyScriptCache":32},{"NativeArray":12},{"Camera":25},{"Secure":1},{"SerializationCache":624},{"APIUpdating":5872},{"Subsystems":384},{"VirtualTexturing":57560},{"StaticSafetyDebugInfo":327752},{"EditorGui":40},{"EditorUtility":1054686},{"VersionControl":4},{"Undo":450},{"AssetDatabase":10586},{"RestService":1518},{"EditorGi":368},{"License":3616},{"UnityConnect":28584},{"Collab":785},{"Upm":1504},{"DrivenProperties":80},{"HubClient":32},{"LocalIPC":212},{"ProfilerEditor":20133},{"CoreBusinessMetrics":2703},{"AssetReference":32}]}
2023-07-17T15:44:14.7391111Z 
2023-07-17T15:44:14.7391699Z Your mono runtime and class libraries are out of sync.
2023-07-17T15:44:14.7393063Z The out of sync library is: /opt/unity/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-linux/System.dll
2023-07-17T15:44:14.7393560Z 
2023-07-17T15:44:14.7393923Z When you update one from git you need to update, compile and install
2023-07-17T15:44:14.7394545Z the other too.
2023-07-17T15:44:14.7395280Z Do not report this as a bug unless you're sure you have updated correctly:
2023-07-17T15:44:14.7395989Z you probably have a broken mono install.
2023-07-17T15:44:14.7396710Z If you see other errors or faults after this message they are probably related
2023-07-17T15:44:14.7397415Z and you need to fix your mono install first.
2023-07-17T15:44:14.7398233Z Compressing using quality level 127
2023-07-17T15:44:14.7398955Z Compressing using quality level 127
2023-07-17T15:44:14.7399778Z Compressing using quality level 127
2023-07-17T15:44:14.7400378Z Compressing using quality level 127
2023-07-17T15:44:14.7400967Z Compressing using quality level 127
2023-07-17T15:44:14.7401545Z Compressing using quality level 127
2023-07-17T15:44:14.7402123Z Compressing using quality level 127
2023-07-17T15:44:14.7402782Z Compressing using quality level 127
2023-07-17T15:44:14.7403359Z Compressing using quality level 127
2023-07-17T15:44:14.7404009Z Compressing using quality level 127
2023-07-17T15:44:14.7404571Z Compressing using quality level 127
2023-07-17T15:44:14.7405155Z Compressing using quality level 127
2023-07-17T15:44:14.7405743Z Compressing using quality level 127
2023-07-17T15:44:14.7406322Z Compressing using quality level 127
2023-07-17T15:44:14.7406889Z Compressing using quality level 127
2023-07-17T15:44:14.7407459Z Compressing using quality level 127
2023-07-17T15:44:14.7408115Z Compressing using quality level 127
2023-07-17T15:44:14.7408698Z Compressing using quality level 127
2023-07-17T15:44:14.7409268Z Compressing using quality level 127
2023-07-17T15:44:14.7409860Z Compressing using quality level 127
2023-07-17T15:44:14.7410432Z Compressing using quality level 127
2023-07-17T15:44:14.7411005Z Compressing using quality level 127
2023-07-17T15:44:15.1429258Z Build failed, with exit code 101
2023-07-17T15:44:16.0697495Z 
2023-07-17T15:44:16.0698372Z ###########################
2023-07-17T15:44:16.0699139Z #       Build output      #
2023-07-17T15:44:16.0699689Z ###########################
2023-07-17T15:44:16.0699984Z 
2023-07-17T15:44:16.0773886Z total 8.0K
2023-07-17T15:44:16.0774964Z drwxr-xr-x 2 root root 4.0K Jul 17 15:17 .
2023-07-17T15:44:16.0775851Z drwxr-xr-x 3 root root 4.0K Jul 17 15:17 ..
2023-07-17T15:44:16.0786246Z Changing to "/github/workspace/_activate-license~" directory.
2023-07-17T15:44:16.0787483Z /github/workspace/_activate-license~ /github/workspace
2023-07-17T15:44:16.0791142Z /github/workspace
2023-07-17T15:44:16.0807192Z 
2023-07-17T15:44:16.0807754Z ###########################
2023-07-17T15:44:16.0808332Z #         Failure         #
2023-07-17T15:44:16.0808854Z ###########################
2023-07-17T15:44:16.0809169Z 
2023-07-17T15:44:16.0809508Z Please note that the exit code is not very descriptive.
2023-07-17T15:44:16.0810203Z Most likely it will not help you solve the issue.
2023-07-17T15:44:16.0810575Z 
2023-07-17T15:44:16.0810946Z To find the reason for failure: please search for errors in the log above.
2023-07-17T15:44:16.0812867Z 
2023-07-17T15:44:16.6356971Z ##[error]The process '/usr/bin/docker' failed with exit code 101
2023-07-17T15:44:16.7637534Z Post job cleanup.
2023-07-17T15:44:16.9451157Z [command]/usr/bin/git version
2023-07-17T15:44:16.9573711Z git version 2.41.0
2023-07-17T15:44:16.9629485Z Temporarily overriding HOME='/home/runner/work/_temp/0e0c2edf-8a22-4e01-8e13-09f989bf45a0' before making global git config changes
2023-07-17T15:44:16.9631741Z Adding repository directory to the temporary git global config as a safe directory
2023-07-17T15:44:16.9637446Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/boardgames/boardgames
2023-07-17T15:44:16.9686003Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-07-17T15:44:16.9723477Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2023-07-17T15:44:17.0113686Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-07-17T15:44:17.0144025Z http.https://github.com/.extraheader
2023-07-17T15:44:17.0155262Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2023-07-17T15:44:17.0198710Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2023-07-17T15:44:17.0876135Z Cleaning up orphan processes
mnicolas94 commented 1 year ago

I think the issue is you are not signing your project with a keystore.

Android Build Fails on Unity 2021 3 20 · Issue #547 · game-ciunity-builder - Google Chrome

You need to add the corresponding Android parameters

Builder  GameCI - Google Chrome

More info in the docs