JPA Console 'hibernate.dialect' not set error during a query to Sql Server table
I've configured Intellij to connect to a Sql Server DB. The connection works fine and if I try to get results by using a Rest API all works!
The problem is when I try to test queries using the JPA Console. I've this error back
[2018-12-11 12:24:05] org.hibernate.service.spi.ServiceException: Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
[2018-12-11 12:24:05] java.lang.RuntimeException: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
etc...
The configuration of application.properties is:
spring.jpa.hibernate.ddl-auto = validate
spring.jpa.show-sql=true
spring.datasource.url=jdbc:sqlserver://localhost;databaseName=db-chklist;integratedSecurity=true;
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.SQLServerDialect
请先登录再写评论。
May be https://youtrack.jetbrains.com/issue/IDEA-164233. Have you associated the data source with the session factory, see Associating persistence units and session factories with data sources.
I am experiencing the same case. Application and API works, while the JPA console in intellij giving same error message all the time.
Andrey 's solution doesnt solve it.
Using application.yml as my app config. I didn't create persistence.xml, and it didn't work either.
And I am sure I have assigned the data source and entityManagerFactory. and the connection is live.
SQL can be executed but HQL not.
I do not understand.
The exception above looks like an authorization error, see https://youtrack.jetbrains.com/issue/IDEA-164233 for details
Data source is assigned.
And SQL console works.
only the JPA/hibernate console has this exception.
Exception above:
-it can be caused by data source is not being assigned to a PersistenceUnit in the PersistenceView - see IDEA-164233, IDEA-161766
-it can be caused by password is being absent - see IDEA-206638
-it is important also to open a new console after assigning etc because the old one is opened with the old properties
-today I've got this exception by having one more connection to the same db (should be the Lock error, but appeared this one)
and also I've met the case of not working completion in consoles in EAP build. I've just re-opened the project and the problem disappeared.
So, in our nowadays eaps just re-opening the project can solve the problem. Unfortunately.
I've tried to reproduce the problem in one of my spring boot test projects which are without persistence.xml, but it works ok for me.
Tried for diff spring boot versions - works ok.
I'd recommend do the following
-close all the consoles and stop all the connections to the db from idea
-build the project (I do usually re-build)
-check, that db credentials saved and work ok in the Database view (connect/disconnect to db)
in case of persistence.xml presence - check credential correctness there.
-check that resolve from an entity in the code works ok to the db table
-check that this db is assigned in the Persistence view
-run a query in a JPA/Hibernate console
If it doesn't help could you please provide us with a simple example project?
I have this very same problem.
The problem is my application has 2 persistence unit and the configuration is custom. The persistence units and their entities are correctly found
Then I open the console and issue a query I get the following error
From the idea log I see a process is run with the following command line
C:\Program Files\Eclipse Adoptium\jdk-17.0.4.1+1\bin\java.exe"^
-Dspring.devtools.restart.enabled=false^
-DDspring.profiles.active=local,local-test,api-docs,swagger^
-Dspring.profiles.active=local,local-test^
-javaagent:c:\programmi\glowroot\glowroot.jar^
-Dglowroot.agent.id=plair^
-Djava.rmi.server.hostname=127.0.0.1^
-Dcom.jetbrains.jpa.root=C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.2\compiler\alfalaval_aps.665bee5e\.generated\Jpa_Console\aps-PU-1764775439652^
-Dfile.encoding=UTF-8 @C:\Users\carlo.marchiori\AppData\Local\Temp\idea_arg_file1017714231 com.intellij.jpa.console.RemoteJpaServer
Looking in the aps-PU-1764775439652 folder there is a META-INF/persistence.xml in which I find
<?xml version="1.0" encoding="UTF-8"?><!-- ignore: openjpa.TransactionMode --><!-- set: hibernate.cache.use_second_level_cache=false --><!-- set: hibernate.cache.use_query_cache=false --><persistence xmlns="http://java.sun.com/xml/ns/persistence"version="2.0"><persistence-unit name="plairEntityManager"transaction-type="RESOURCE_LOCAL"><provider>org.hibernate.jpa.HibernatePersistenceProvider</provider><class>it.alfalaval.aps.plair.domain.ItemThermalData</class><class>it.alfalaval.aps.products.domain.TestPressure</class><class>it.alfalaval.aps.plair.domain.timezone.DateTimeWrapper</class><!-- ... --><exclude-unlisted-classes>false</exclude-unlisted-classes><properties><property name="hibernate.cache.use_second_level_cache"value="false"/><property name="hibernate.cache.use_query_cache"value="false"/><property name="hibernate.physical_naming_strategy"value="org.hibernate.boot.model.naming.CamelCaseToUnderscoresNamingStrategy"/><property name="hibernate.connection.url"value="jdbc:sqlserver://localhost:1143;database=plair-test"/><property name="hibernate.connection.driver_class"value="com.microsoft.sqlserver.jdbc.SQLServerDriver"/><property name="hibernate.connection.username"value="aps"/><property name="hibernate.connection.password"value="aps"/></properties></persistence-unit></persistence>There is no hibernate.dialect set in fact. I've tried in many ways but I cannot figure out how to customize this generated persistence.xml
Summarizing:
The persistence plugin is good at extracting the JPA configuration from the application configuration classes. It's also ok that it let connect the persistence unit to a datasource configured in the IDE. What is missing is the possibility of customizing o controlling in some way the middle ground between JPA and JDBC, specifically hibernate properties.
Hi carlo.marchiori
Did you try the suggestions from Petr Rastegaev (https://intellij-support.jetbrains.com/hc/en-us/community/posts/360001876979/comments/360000873560)? Could you please share the whole log for further investigation? It would be very helpful to see the stack trace from the error.
Thanks for replying.
The error in the console is
[2025-12-04 09:22:34] jpa-ql> select u from User u
[2025-12-04 09:22:58] Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]
[2025-12-04 09:22:58] org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set
The whole idea log is
2025-12-04 09:20:50,747 [ 11] INFO - #c.i.p.i.b.AppStarter - ------------------------------------------------------ IDE STARTED ------------------------------------------------------2025-12-04 09:20:50,751 [ 15] INFO - #c.i.p.i.b.AppStarter - Will skip the config import to directory "C:\Users\carlo.marchiori\AppData\Roaming\JetBrains\IntelliJIdea2025.3" (exists = true). Current entries: "app-internal-state.db", "bundled_plugins.txt", "c.kdbx", "c.pwd", "codestyles", "consoles", "disabled_plugins.txt", "disabled_update.txt", "early-access-registry.txt", "event-log-metadata", "extensions", "grazie", "idea.key", "jdbc-drivers", "keymaps", "migration", "migration_installed_plugins.txt", "options", "plugins", "plugin_PCWMP.license", "splash-subscription-mode.txt", "ssl", "tasks", "updatedBrokenPlugins.db", "workspace".2025-12-04 09:20:50,756 [ 20] INFO - #c.i.u.s.JBUIScale - System scale factor: 1.0 (JRE-managed HiDPI)2025-12-04 09:20:50,774 [ 38] INFO - #c.i.u.s.JBUIScale - Computed user scale factor: 1.0 (JRE-managed HiDPI)2025-12-04 09:20:50,776 [ 40] INFO - #c.i.p.i.b.AppStarter - JNA library (64-bit) loaded in 27 ms2025-12-04 09:20:50,788 [ 52] INFO - #c.i.p.i.b.AppStarter - IDE: IntelliJ IDEA (build #IU-253.28294.251, Fri, 28 Nov 2025 05:05:00 GMT)2025-12-04 09:20:50,788 [ 52] INFO - #c.i.p.i.b.AppStarter - OS: Windows (11.0)2025-12-04 09:20:50,788 [ 52] INFO - #c.i.p.i.b.AppStarter - JRE: 21.0.8+9-b1163.69, amd64 (JetBrains s.r.o.)2025-12-04 09:20:50,788 [ 52] INFO - #c.i.p.i.b.AppStarter - JVM: 21.0.8+9-b1163.69 (OpenJDK 64-Bit Server VM)2025-12-04 09:20:50,788 [ 52] INFO - #c.i.p.i.b.AppStarter - PID: 90922025-12-04 09:20:50,804 [ 68] INFO - #c.i.p.i.b.AppStarter - JVM options: [abort, vfprintf, -XX:ErrorFile=C:\Users\carlo.marchiori\java_error_in_idea_%p.log, -XX:HeapDumpPath=C:\Users\carlo.marchiori\java_error_in_idea.hprof, -Xms128m, -Xmx2048m, -XX:JbrShrinkingGcMaxHeapFreeRatio=40, -XX:ReservedCodeCacheSize=512m, -XX:+HeapDumpOnOutOfMemoryError, -XX:-OmitStackTraceInFastThrow, -XX:CICompilerCount=2, -XX:+IgnoreUnrecognizedVMOptions, -XX:+UnlockDiagnosticVMOptions, -XX:TieredOldPercentage=100000, -ea, -Dsun.io.useCanonCaches=false, -Dsun.java2d.metal=true, -Djbr.catch.SIGABRT=true, -Djdk.http.auth.tunneling.disabledSchemes="", -Djdk.attach.allowAttachSelf=true, -Djdk.module.illegalAccess.silent=true, -Djdk.nio.maxCachedBufferSize=2097152, -Djava.util.zip.use.nio.for.zip.file.access=true, -Dkotlinx.coroutines.debug=off, -Djava.nio.file.spi.DefaultFileSystemProvider=com.intellij.platform.core.nio.fs.MultiRoutingFileSystemProvider, -Djb.vmOptionsFile=C:\Program Files\JetBrains\IntelliJ IDEA 2025.3\bin/idea64.exe.vmoptions, -Xbootclasspath/a:C:\Program Files\JetBrains\IntelliJ IDEA 2025.3\lib\nio-fs.jar, -Djava.system.class.loader=com.intellij.util.lang.PathClassLoader, -Didea.vendor.name=JetBrains, -Didea.paths.selector=IntelliJIdea2025.3, -Djna.boot.library.path=C:\Program Files\JetBrains\IntelliJ IDEA 2025.3/lib/jna/amd64, -Djna.nosys=true, -Djna.noclasspath=true, -Dpty4j.preferred.native.folder=C:\Program Files\JetBrains\IntelliJ IDEA 2025.3/lib/pty4j, -Dio.netty.allocator.type=pooled, -Dintellij.platform.runtime.repository.path=C:\Program Files\JetBrains\IntelliJ IDEA 2025.3/modules/module-descriptors.dat, -Dwsl.use.remote.agent.for.nio.filesystem=true, -Djava.nio.file.spi.DefaultFileSystemProvider=com.intellij.platform.core.nio.fs.MultiRoutingFileSystemProvider, -Dsplash=true, -Daether.connector.resumeDownloads=false, -Dcompose.swing.render.on.graphics=true, --add-opens=java.base/java.io=ALL-UNNAMED, --add-opens=java.base/java.lang=ALL-UNNAMED, --add-opens=java.base/java.lang.ref=ALL-UNNAMED, --add-opens=java.base/java.lang.reflect=ALL-UNNAMED, --add-opens=java.base/java.net=ALL-UNNAMED, --add-opens=java.base/java.nio=ALL-UNNAMED, --add-opens=java.base/java.nio.charset=ALL-UNNAMED, --add-opens=java.base/java.text=ALL-UNNAMED, --add-opens=java.base/java.time=ALL-UNNAMED, --add-opens=java.base/java.util=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED, --add-opens=java.base/jdk.internal.ref=ALL-UNNAMED, --add-opens=java.base/jdk.internal.vm=ALL-UNNAMED, --add-opens=java.base/sun.net.dns=ALL-UNNAMED, --add-opens=java.base/sun.nio=ALL-UNNAMED, --add-opens=java.base/sun.nio.ch=ALL-UNNAMED, --add-opens=java.base/sun.nio.fs=ALL-UNNAMED, --add-opens=java.base/sun.security.ssl=ALL-UNNAMED, --add-opens=java.base/sun.security.util=ALL-UNNAMED, --add-opens=java.desktop/com.sun.java.swing=ALL-UNNAMED, --add-opens=java.desktop/java.awt=ALL-UNNAMED, --add-opens=java.desktop/java.awt.dnd.peer=ALL-UNNAMED, --add-opens=java.desktop/java.awt.event=ALL-UNNAMED, --add-opens=java.desktop/java.awt.font=ALL-UNNAMED, --add-opens=java.desktop/java.awt.image=ALL-UNNAMED, --add-opens=java.desktop/java.awt.peer=ALL-UNNAMED, --add-opens=java.desktop/javax.swing=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text.html.parser=ALL-UNNAMED, --add-opens=java.desktop/sun.awt=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.datatransfer=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.image=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.windows=ALL-UNNAMED, --add-opens=java.desktop/sun.font=ALL-UNNAMED, --add-opens=java.desktop/sun.java2d=ALL-UNNAMED, --add-opens=java.desktop/sun.swing=ALL-UNNAMED, --add-opens=java.management/sun.management=ALL-UNNAMED, --add-opens=jdk.attach/sun.tools.attach=ALL-UNNAMED, --add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED, --add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED, --add-opens=jdk.jdi/com.sun.tools.jdi=ALL-UNNAMED, -Dide.native.launcher=true, -Djcef.sandbox.ptr=000002501CAB2F80, -Djcef.sandbox.cefVersion=122.1.9+gd14e051+chromium-122.0.6261.94]2025-12-04 09:20:50,804 [ 68] INFO - #c.i.p.i.b.AppStarter - args:2025-12-04 09:20:50,804 [ 68] INFO - #c.i.p.i.b.AppStarter - library path: C:\Program Files\JetBrains\IntelliJ IDEA 2025.3\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.1\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.1\libnvvp;C:\Program Files\python.org\Python3.11\Scripts\;C:\Program Files\python.org\Python3.11\;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\Program Files\Volta\;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Users\carlo.marchiori\academy-tools;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Azure Data Studio\bin;C:\Progetti\.data\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\apache-maven-3.8.5\bin;C:\Users\carlo.marchiori\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Program Files\dotnet\;C:\Program Files\PuTTY\;C:\Users\carlo.marchiori\AppData\Local\Microsoft\WindowsApps;C:\Users\carlo.marchiori\AppData\Local\Programs\Microsoft VS Code\bin;C:\Program Files\Misc\mingw\bin;C:\Program Files\Misc\stern;C:\Progetti\.data (x86)\Microsoft SQL Server\160\Tools\Binn\;C:\Progetti\.data\Microsoft SQL Server\160\Tools\Binn\;C:\Progetti\.data\Microsoft SQL Server\160\DTS\Binn\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\python.org\Python27;.\node_modules\.bin;C:\Progetti\.data\Microsoft SQL Server\150\Tools\Binn\;C:\Progetti\.data\Microsoft SQL Server\130\Tools\Binn\;C:\Progetti\.data (x86)\Microsoft SQL Server\160\DTS\Binn\;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files\NVIDIA Corporation\Nsight Compute 2023.1.0\;c:\program files\misc\ffmpeg\bin;C:\Users\carlo.marchiori\Programmi;C:\Program Files\Eclipse Adoptium\jdk-17.0.4.1+1\bin;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\PowerShell\7\;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Users\carlo.marchiori\AppData\Local\Volta\bin;C:\Users\carlo.marchiori\AppData\Local\Microsoft\WindowsApps;C:\Program Files\Azure Data Studio\bin;C:\Users\carlo.marchiori\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\carlo.marchiori\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Users\carlo.marchiori\.dotnet\tools;C:\Users\carlo.marchiori\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\carlo.marchiori\AppData\Local\Programs\Ollama;C:\Users\carlo.marchiori\AppData\Local\Programs\Azure Dev CLI\;C:\Users\carlo.marchiori\AppData\Roaming\Python\Python311\Scripts;;C:\Users\carlo.marchiori\AppData\Local\Microsoft\WindowsApps;.2025-12-04 09:20:50,804 [ 68] INFO - #c.i.p.i.b.AppStarter - boot library path: C:\Program Files\JetBrains\IntelliJ IDEA 2025.3\jbr\bin2025-12-04 09:20:50,804 [ 68] INFO - #c.i.p.i.b.AppStarter - locale=it_IT JNU=UTF-8 file.encoding=UTF-8idea.home.path=C:\Program Files\JetBrains\IntelliJ IDEA 2025.3idea.config.path=C:\Users\carlo.marchiori\AppData\Roaming\JetBrains\IntelliJIdea2025.3idea.system.path=C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3idea.plugins.path=C:\Users\carlo.marchiori\AppData\Roaming\JetBrains\IntelliJIdea2025.3\pluginsidea.log.path=C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3\log2025-12-04 09:20:50,804 [ 68] INFO - #c.i.p.i.b.AppStarter - CPU cores: 12; ForkJoinPool.commonPool: java.util.concurrent.ForkJoinPool@6b1eac1a[Running, parallelism = 11, size = 0, active = 0, running = 0, steals = 0, tasks = 0, submissions = 0]; factory: com.intellij.concurrency.IdeaForkJoinWorkerThreadFactory@bdfa5672025-12-04 09:20:51,102 [ 366] INFO - #c.i.i.p.PluginManager - Using cached broken plugins file2025-12-04 09:20:51,144 [ 408] INFO - #c.i.i.p.PluginManager - Plugin set resolution:Module intellij.textmate.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.json.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.sh.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.terminal.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.fullLine.chat is not enabled because dependency intellij.ml.llm.core is not availableModule intellij.fullLine.terraform is not enabled because dependency org.intellij.plugins.hcl is not availableModule intellij.fullLine.rust is not enabled because dependency com.jetbrains.rust is not availableModule intellij.fullLine.ruby is not enabled because dependency intellij.ruby.backend is not availableModule intellij.fullLine.rider is not enabled because dependency com.intellij.modules.rider.cpp.core is not availableModule intellij.fullLine.rider.shaderlab is not enabled because dependency intellij.fullLine.rider is not availableModule intellij.fullLine.rider.fsharp is not enabled because dependency intellij.fullLine.rider is not availableModule intellij.fullLine.rider.csharp is not enabled because dependency intellij.fullLine.rider is not availableModule intellij.fullLine.rider.cpp is not enabled because dependency intellij.fullLine.rider is not availableModule intellij.fullLine.rbs is not enabled because dependency intellij.ruby.rbs.backend is not availableModule intellij.fullLine.python is not enabled because dependency com.intellij.modules.python is not availableModule intellij.fullLine.python.jupyter is not enabled because dependency intellij.notebooks.core is not availableModule intellij.fullLine.php is not enabled because dependency com.jetbrains.php is not availableModule intellij.fullLine.kotlin is not enabled because dependency org.jetbrains.kotlin is not availableModule intellij.fullLine.kotlin.jupyter is not enabled because dependency intellij.fullLine.kotlin is not availableModule intellij.fullLine.html is not enabled because dependency HtmlTools is not availableModule intellij.fullLine.go is not enabled because dependency org.jetbrains.plugins.go is not availableModule intellij.fullLine.erb is not enabled because dependency org.jetbrains.plugins.ruby is not availableModule intellij.fullLine.cpp is not enabled because dependency intellij.cidr.lang.base is not availableModule intellij.fullLine.federatedCompute is not enabled because dependency com.intellij.federatedCompute is not availableModule intellij.fullLine.terraform.local is not enabled because dependency intellij.fullLine.terraform is not availableModule intellij.fullLine.rust.local is not enabled because dependency intellij.fullLine.rust is not availableModule intellij.fullLine.ruby.local is not enabled because dependency intellij.fullLine.ruby is not availableModule intellij.fullLine.rider.local is not enabled because dependency intellij.fullLine.rider is not availableModule intellij.fullLine.rider.csharp.local is not enabled because dependency intellij.fullLine.rider is not availableModule intellij.fullLine.rider.cpp.local is not enabled because dependency intellij.fullLine.rider is not availableModule intellij.fullLine.python.local is not enabled because dependency intellij.fullLine.python is not availableModule intellij.fullLine.python.jupyter.local is not enabled because dependency intellij.fullLine.python is not availableModule intellij.fullLine.php.local is not enabled because dependency intellij.fullLine.php is not availableModule intellij.fullLine.kotlin.local is not enabled because dependency intellij.fullLine.kotlin is not availableModule intellij.fullLine.kotlin.jupyter.local is not enabled because dependency intellij.fullLine.kotlin.local is not availableModule intellij.fullLine.html.local is not enabled because dependency intellij.fullLine.html is not availableModule intellij.fullLine.go.local is not enabled because dependency intellij.fullLine.go is not availableModule intellij.fullLine.cpp.local is not enabled because dependency intellij.fullLine.cpp is not availableModule intellij.markdown.frontmatter.toml is not enabled because dependency org.toml.lang is not availableModule intellij.sh.python is not enabled because dependency com.intellij.modules.python is not availableModule intellij.xml.langInjection.xpath is not enabled because dependency XPathView is not availableModule intellij.station.aia is not enabled because dependency intellij.ml.llm.mcp is not availableModule intellij.station.frontend.split is not enabled because dependency com.intellij.jetbrains.client is not availableModule intellij.ml.llm.completion is not enabled because dependency intellij.ml.llm.core is not availableModule intellij.ml.llm.xml.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.vcs.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.rider.shaderlab.completion is not enabled because dependency intellij.fullLine.rider.shaderlab is not availableModule intellij.ml.llm.rider.fsharp.completion is not enabled because dependency intellij.fullLine.rider.fsharp is not availableModule intellij.ml.llm.rider.csharp.completion is not enabled because dependency intellij.fullLine.rider.csharp is not availableModule intellij.ml.llm.rider.cpp.completion is not enabled because dependency intellij.fullLine.rider.cpp is not availableModule intellij.ml.llm.xdebugger.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.json.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.rust.completion is not enabled because dependency intellij.fullLine.rust is not availableModule intellij.ml.llm.terminal.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.cpp.completion is not enabled because dependency intellij.fullLine.cpp is not availableModule intellij.ml.llm.markdown.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.text.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.terraform.completion is not enabled because dependency intellij.fullLine.terraform is not availableModule intellij.ml.llm.html.completion is not enabled because dependency intellij.fullLine.html is not availableModule intellij.ml.llm.php.completion is not enabled because dependency intellij.fullLine.php is not availableModule intellij.ml.llm.ruby.completion is not enabled because dependency intellij.fullLine.ruby is not availableModule intellij.ml.llm.rbs.completion is not enabled because dependency intellij.fullLine.rbs is not availableModule intellij.ml.llm.go.completion is not enabled because dependency intellij.fullLine.go is not availableModule intellij.ml.llm.python.completion is not enabled because dependency intellij.fullLine.python is not availableModule intellij.ml.llm.jupyter.python.completion is not enabled because dependency intellij.fullLine.python is not availableModule intellij.ml.llm.kotlin.completion is not enabled because dependency intellij.fullLine.kotlin is not availableModule intellij.ml.llm.jupyter.kotlin.completion is not enabled because dependency intellij.fullLine.kotlin.jupyter is not availableModule intellij.ml.llm.erb.completion is not enabled because dependency intellij.fullLine.ruby is not availableModule intellij.ml.llm.chat.completion is not enabled because dependency intellij.fullLine.chat is not availableModule intellij.ml.llm.completion.nextEdits.proxy is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.experiments is not enabled because dependency intellij.ml.llm.core is not availableModule intellij.llmInstaller.ds.ide is not enabled because dependency intellij.dataspell.ide.impl is not availableModule intellij.llmInstaller.ds is not enabled because dependency intellij.dataWrangler.llm is not availableModule intellij.css.watcher is not enabled because dependency com.intellij.plugins.watcher is not availableModule intellij.css.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.ml.llm.css.completion is not enabled because dependency intellij.ml.llm.css is not availableModule intellij.fullLine.css.sass is not enabled because dependency intellij.sass.backend is not availableModule intellij.ml.llm.css.sass.completion is not enabled because dependency intellij.sass.backend is not availableModule intellij.fullLine.css.postcss is not enabled because dependency org.intellij.plugins.postcss is not availableModule intellij.ml.llm.css.postcss.completion is not enabled because dependency intellij.fullLine.css.postcss is not availableModule intellij.fullLine.css.less is not enabled because dependency org.jetbrains.plugins.less is not availableModule intellij.ml.llm.css.less.completion is not enabled because dependency intellij.fullLine.css.less is not availableModule intellij.fullLine.css.sass.local is not enabled because dependency intellij.fullLine.css.sass is not availableModule intellij.fullLine.css.postcss.local is not enabled because dependency intellij.fullLine.css.postcss is not availableModule intellij.fullLine.css.less.local is not enabled because dependency intellij.fullLine.css.less is not availableModule intellij.ml.llm.sql.completion is not enabled because dependency intellij.ml.llm.libraries.grazie is not availableModule intellij.database.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.ml.llm.javaee.spring.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.editorconfig.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.yaml.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.ml.llm.yaml.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.yaml.javaee.spring.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.ml.llm.yaml.json.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.yaml.helm is not enabled because dependency org.jetbrains.plugins.go-template is not availableModule intellij.microservices.jvm.gradle is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.microservices.jvm.kt is not enabled because dependency org.jetbrains.kotlin is not availableModule intellij.microservices.jvm.cron is not enabled because dependency com.intellij.cron is not availableModule intellij.microservices.jvm.yaml is not enabled because dependency intellij.microservices.jvm.cron is not availableModule intellij.javaee.jpa.jpb.modelKt is not enabled because dependency org.jetbrains.kotlin is not availableModule intellij.ml.llm.java.completion is not enabled because dependency intellij.ml.llm.libraries.grazie is not availableModule intellij.kotlin.onboarding.promoter is not enabled because dependency intellij.kotlin.featuresTrainer is not availableModule intellij.webDeployment/phpStorm is not enabled because dependency com.intellij.modules.phpstorm is not availableModule intellij.groovy/ant is not enabled because dependency AntSupport is not availableModule intellij.ml.llm.properties.completion is not enabled because dependency intellij.ml.llm.completion is not availableModule intellij.spring.eclipse is not enabled because dependency org.jetbrains.idea.eclipse is not availableModule intellij.spring.kotlin is not enabled because dependency org.jetbrains.kotlin is not availableModule intellij.spring.web is not enabled because dependency com.intellij.javaee.web is not availableModule intellij.spring.security.mvc is not enabled because dependency com.intellij.spring.mvc is not availableModule intellij.javaee.jax.rs/swagger is not enabled because dependency com.intellij.swagger is not availableModule intellij.javaee.gradle is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.spring.integration.core/xpath is not enabled because dependency XPathView is not availableModule intellij.protoeditor.python is not enabled because dependency com.intellij.modules.python is not availableModule intellij.protoeditor.go is not enabled because dependency org.jetbrains.plugins.go is not availableModule intellij.spring.boot.cloud.gateway is not enabled because dependency com.intellij.spring.mvc is not availableModule intellij.spring.boot.cron is not enabled because dependency intellij.microservices.jvm.cron is not availableModule intellij.spring.boot.cron.yaml is not enabled because dependency intellij.spring.boot.cron is not availableModule intellij.spring.boot.cron.properties is not enabled because dependency intellij.spring.boot.cron is not availableModule intellij.spring.boot.rewrite is not enabled because dependency com.intellij.openRewrite is not availableModule intellij.spring.boot.gradle.shared is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.spring.boot.gradle.kts.shared is not enabled because dependency intellij.spring.boot.gradle.shared is not availableModule intellij.spring.boot.mvc is not enabled because dependency com.intellij.spring.mvc is not availableModule intellij.ktor.client.minimal is not enabled because dependency org.jetbrains.kotlin is not availableModule intellij.httpClient.injection.graphql is not enabled because dependency com.intellij.lang.jsgraphql is not availableModule intellij.spring.jsf is not enabled because dependency com.intellij.jsf is not availableModule intellij.spring.security.jsp is not enabled because dependency com.intellij.jsp is not availableModule intellij.javaee.jpa.kotlin is not enabled because dependency org.jetbrains.kotlin is not availableModule intellij.quarkus.cron is not enabled because dependency intellij.microservices.jvm.cron is not availableModule intellij.quarkus.rewrite is not enabled because dependency com.intellij.openRewrite is not availableModule intellij.quarkus.gradle.kts is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.quarkus.gradle is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.micronaut.oas is not enabled because dependency com.intellij.swagger is not availableModule intellij.micronaut.cron is not enabled because dependency intellij.microservices.jvm.cron is not availableModule intellij.micronaut.rewrite is not enabled because dependency com.intellij.openRewrite is not availableModule intellij.micronaut.gradle is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.clouds.docker.file.frontend.split is not enabled because dependency intellij.platform.frontend.split is not availableModule intellij.clouds.kubernetes.charts.gotpl is not enabled because dependency intellij.yaml.helm is not availableModule intellij.clouds.kubernetes.cron is not enabled because dependency com.intellij.cron is not availableModule intellij.llmInstaller.pycharm.community is not enabled because dependency intellij.pycharm.community.ide.impl.promotion is not availableModule intellij.llmInstaller.jupyter is not enabled because dependency intellij.jupyter.core is not availableModule intellij.vcs.github.ultimate.cron is not enabled because dependency com.intellij.cron is not availableModule intellij.remoteRun.gradle.docker is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.remoteRun.gradle is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.diagram.gradle is not enabled because dependency org.jetbrains.plugins.gradle is not availableModule intellij.javaee.application.maven is not enabled because dependency com.intellij.javaee.web is not availableModule intellij.ml.llm.javascript.completion is not enabled because dependency intellij.ml.llm.libraries.grazie is not availableModule intellij.fullLine.js.vue is not enabled because dependency intellij.vuejs.backend is not availableModule intellij.ml.llm.javascript.vue.completion is not enabled because dependency intellij.fullLine.js.vue is not availableModule intellij.fullLine.js.vue.local is not enabled because dependency intellij.fullLine.js.vue is not availableModule intellij.fullLine.js.svelte is not enabled because dependency dev.blachut.svelte.lang is not availableModule intellij.ml.llm.javascript.svelte.completion is not enabled because dependency intellij.fullLine.js.svelte is not availableModule intellij.fullLine.js.svelte.local is not enabled because dependency intellij.fullLine.js.svelte is not availableModule intellij.fullLine.js.astro is not enabled because dependency org.jetbrains.plugins.astro is not availableModule intellij.ml.llm.javascript.astro.completion is not enabled because dependency intellij.fullLine.js.astro is not availableModule intellij.fullLine.js.astro.local is not enabled because dependency intellij.fullLine.js.astro is not availableModule intellij.aqua.runners.js.core is not enabled because dependency JavaScriptDebugger is not availableModule intellij.aqua.runners.playwright.js is not enabled because dependency intellij.aqua.runners.js.core is not availableModule intellij.aqua.runners.cypress is not enabled because dependency intellij.aqua.runners.js.core is not availableModule intellij.javascript.devkit is not enabled because dependency intellij.devkit.core is not availableModule intellij.restClient/intelliLangInJs is not enabled because dependency XPathView is not availableModule intellij.packageChecker.php is not enabled because dependency com.jetbrains.php is not availableModule intellij.packageChecker.python is not enabled because dependency com.intellij.modules.python is not availableModule intellij.packageChecker.gradle is not enabled because dependency intellij.gradle.dependencyUpdater is not availableModule intellij.packageChecker.go is not enabled because dependency org.jetbrains.plugins.go is not availableModule intellij.packageChecker.amper is not enabled because dependency org.jetbrains.amper is not available2025-12-04 09:20:51,144 [ 408] WARN - #c.i.i.p.PluginManager - Problems found loading plugins:Plugin 'Gradle DSL API' (org.jetbrains.idea.gradle.dsl) requires plugin with id=com.intellij.gradle to be enabled2025-12-04 09:20:51,175 [ 439] INFO - #c.i.i.p.PluginManager - Loaded bundled plugins: IDEA CORE (253.28294.251), TextMate Bundles (253.28294.251), Kubernetes (253.28294.251), JSON (253.28294.251), Database Tools and SQL (253.28294.251), Markdown (253.28294.251), Terminal (253.28294.251), Java (253.28294.251), Shell Script (253.28294.251), Data Editor Support (253.28294.251), Full Line Code Completion (253.28294.251), Machine Learning Code Completion (253.28294.251), Machine Learning in Search Everywhere (253.28294.251), JetBrains Ultimate (253.28294.251), JavaFX (253.28294.251), Station (253.28294.251), IDE Features Trainer (253.28294.251), CSS (253.28294.251), Artifacts Repository Search (253.28294.251), Images (253.28294.251), Diagrams (253.28294.251), Machine Learning in Find Usages (253.28294.251), Java Stream Debugger (253.28294.251), JVM Microservices Frameworks (253.28294.251), Jakarta EE: JPA Model (253.28294.251), Liquibase (253.28294.251), In-Editor Performance Hints (253.28294.251), AOP Pointcut Language (253.28294.251), Remote Execution Agent (253.28294.251), WSL Support Framework (253.28294.251), FTP/SFTP/WebDAV Connectivity (253.28294.251), Performance Testing (253.28294.251), Spring Initializr (253.28294.251), Lombok (253.28294.251), Java Bytecode Decompiler (253.28294.251), Task Management (253.28294.251), Time Tracking (253.28294.251), JUnit (253.28294.251), Code Coverage for Java (253.28294.251), Groovy (253.28294.251), Java Internationalization (253.28294.251), Spring Messaging (253.28294.251), Jakarta EE: Contexts and Dependency Injection (CDI) (253.28294.251), Spring Security (253.28294.251), Jakarta EE: RESTful Web Services (JAX-RS) (253.28294.251), Spring Integration Patterns (253.28294.251), Protocol Buffers (253.28294.251), Spring Modulith (253.28294.251), Spring Cloud (253.28294.251), Spring Boot (253.28294.251), Remote Development Server (253.28294.251), JSONPath (253.28294.251), Jakarta EE: Messaging (JMS) (253.28294.251), Bytecode Viewer (253.28294.251), Jakarta EE: Expression Language (EL) (253.28294.251), Hibernate (253.28294.251), Spring Data (253.28294.251), Jakarta EE: Persistence (JPA) (253.28294.251), Jakarta EE: Data (253.28294.251), Reverse Engineering (253.28294.251), Quarkus (253.28294.251), Micronaut (253.28294.251), JVM Persistence Frameworks (253.28294.251), Java IDE Customization (253.28294.251), Natural Languages (253.28294.251), Git (253.28294.251), SSH Remote Run (253.28294.251), Maven (253.28294.251), Backup and Sync (253.28294.251), Configuration Script (253.28294.251), Shared Indexes (253.28294.251), Shared Project Indexes (253.28294.251), Prettier (253.28294.251), Code With Me (253.28294.251), Jakarta EE: Bean Validation (253.28294.251), Dev Containers (253.28294.251), Endpoints (253.28294.251), Remote Development Gateway (253.28294.251), Async Profiler for IDE Performance Testing (253.28294.251)2025-12-04 09:20:51,175 [ 439] INFO - #c.i.i.p.PluginManager - Loaded custom plugins: Collections Viewer in Debugger (253.28294.252), JavaScript and TypeScript (253.28294.256), Copyright (253.28294.259), Spring (253.28294.259), EditorConfig (253.28294.254), YAML (253.28294.259), Properties (253.28294.252), Jakarta EE Platform (253.28294.252), HTTP Client (253.28294.259), Docker (253.28294.259), GitHub (253.28294.259), GitLab (253.28294.259), React (253.28294.256), GitHub Copilot - Your AI Pair Programmer (1.5.61-243), Package Checker (253.28294.259)2025-12-04 09:20:51,175 [ 439] INFO - #c.i.i.p.PluginManager - Disabled plugins: Angular (253.28294.251), Subversion (253.28294.251), Vue.js (253.28294.251), Perforce Helix Core (253.28294.251), Apache Velocity (253.28294.251), JavaScript Intention Power Pack (253.28294.251), Eclipse Keymap (253.28294.251), Compose Multiplatform (253.28294.251), Node.js (253.28294.251), Gradle for Java (253.28294.251), TestNG (253.28294.251), Jupyter (253.28294.251), XPathView + XSLT (253.28294.251), Jakarta EE: Application Servers (253.28294.251), PostCSS (253.28294.251), Korean Language Pack / 한국어 언어 팩 (253.28294.251), Karma (253.28294.251), OpenAPI Specifications (253.28294.251), Thymeleaf (253.28294.251), Toml (253.28294.251), Refactor-X (253.28294.251), MCP Server (253.28294.251), Cron Expressions (253.28294.251), Next.js (253.28294.251), Qodana (253.28294.251), Visual Studio Keymap (253.28294.251), Ktor (253.28294.251), Kotlin (253.28294.251-IJ), Jakarta EE: Server Pages (JSP) (253.28294.251), Vite (253.28294.251), HTML Tools (253.28294.251), Stylelint (253.28294.251), Tomcat and TomEE (253.28294.251), Polymer & Web Components (253.28294.251), Kotlin Notebook (253.28294.251), Gradle Declarative Support (253.28294.251), Jakarta EE: Web/Servlets (253.28294.251), Chinese (Simplified) Language Pack / 中文语言包 (253.28294.251), DevKit Runtime (253.28294.251), Styled Components & Styled JSX (253.28294.251), Flyway (253.28294.251), Eclipse Interoperability (253.28294.251), NetBeans Keymap (253.28294.251), Azure Toolkit for IntelliJ (3.96.3-2025.3), Mercurial (253.28294.251), Node.js Remote Interpreter (253.28294.251), Modal Commit Interface (253.28294.251), FreeMarker (253.28294.251), WildFly (253.28294.251), Sass (253.28294.251), JavaScript Debugger (253.28294.251), Webpack (253.28294.251), Tailwind CSS (253.28294.251), Less (253.28294.251), Japanese Language Pack / 日本語言語パック (253.28294.251), Spring Web (253.28294.251), Gradle (253.28294.251), TSLint (253.28294.251), Notebook Files (253.28294.251)2025-12-04 09:20:51,321 [ 585] INFO - #c.i.u.i.PageCacheUtils - File page caching params:DEFAULT_PAGE_SIZE: 10485760Direct memory to use, max: 2126512128FilePageCache: regularRegular FilePageCache: 629145600 bytesDirectByteBuffers pool: 104857600 bytes2025-12-04 09:20:51,348 [ 612] INFO - #c.i.c.d.g.i.DevcontainerPluginManager - Started2025-12-04 09:20:51,348 [ 612] INFO - #c.i.c.d.g.i.DevcontainerPluginManager - Options path: C:\Users\carlo.marchiori\AppData\Roaming\JetBrains\IntelliJIdea2025.3\options2025-12-04 09:20:51,348 [ 612] INFO - #c.i.p.k.b.BackendKernelServiceKt - Backend started Kernel2025-12-04 09:20:51,348 [ 612] INFO - #c.i.l.u.p.AIPromoWindowAdvisor - Advisor is initialized2025-12-04 09:20:51,349 [ 613] INFO - #c.i.l.u.p.AIPromoWindowAdvisor - Starting calculation of verdict for promo window2025-12-04 09:20:51,388 [ 652] INFO - #c.i.p.e.i.f.EelMultiRoutingFileSystemBackendInitializationService - Eel MultiRoutingFileSystem backend is initialized2025-12-04 09:20:51,402 [ 666] INFO - #c.i.o.v.n.i.VfsData - Use SoftReference in VFS cache: true2025-12-04 09:20:51,454 [ 718] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses names enumerator over mmapped file2025-12-04 09:20:51,454 [ 718] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses streamlined attributes storage (over mmapped file)2025-12-04 09:20:51,461 [ 725] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses content storage over memory-mapped file, with compression algo: LZ4[ > 8000b ]2025-12-04 09:20:51,461 [ 725] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses OverMMappedFile(pageSize=67108864, acquireStorageOwnership=true) storage for main file records table2025-12-04 09:20:51,489 [ 753] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS: impl (expected) version=846400, 230719 file records, 3031 content blobs2025-12-04 09:20:51,503 [ 767] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS initialized: 53 ms, 0 failed attempts, 0 error(s) were recovered2025-12-04 09:20:51,513 [ 777] INFO - #c.i.l.LocalizationStateServiceImpl - [i18n] Localization property from registry is null2025-12-04 09:20:51,518 [ 782] INFO - #c.i.o.u.LowMemoryWatcherManager - Use ExponentiallySmoothingTracker(90000 ms)2025-12-04 09:20:51,518 [ 782] INFO - #c.i.o.u.r.RegistryManager - Registry values changed by user: i18n.locale = , ide.experimental.ui = true, ide.experimental.ui.inter.font = false, idea.plugins.compatible.build = , moved.to.new.ui = true2025-12-04 09:20:51,521 [ 785] INFO - #c.i.s.c.s.IdeStationServerService$Companion - Creating discovery services2025-12-04 09:20:51,521 [ 785] INFO - #c.i.o.u.LowMemoryWatcherManager - Subscribing to MemoryPool[G1 Old Gen]{max: 2147483648, threshold: 2040109440 (0.95 * max)}2025-12-04 09:20:51,521 [ 785] INFO - #c.i.o.u.LowMemoryWatcherManager - Schedule GC-time updating: each 15000ms2025-12-04 09:20:51,528 [ 792] INFO - #c.i.o.v.n.p.PersistentFSImpl - VFS.MAX_FILE_LENGTH_TO_CACHE: 10485762025-12-04 09:20:51,568 [ 832] INFO - #c.i.a.o.PathMacrosImpl - Loaded path macros: {MAVEN_REPOSITORY=C:\Users\carlo.marchiori\.m2\repository}2025-12-04 09:20:51,588 [ 852] INFO - #c.i.l.u.p.AIPromoWindowAdvisor - Max attempts reached2025-12-04 09:20:51,597 [ 861] INFO - #c.i.i.p.ExpiredPluginsState - Plugins to skip: []2025-12-04 09:20:51,604 [ 868] INFO - #c.i.i.s.StatisticsRegionSettingsServiceImpl - Statistics. Region code is not_set2025-12-04 09:20:51,618 [ 882] INFO - #c.i.o.v.n.p.FSRecords - VFS health-check enabled: first after 600000 ms, and each following 43200000 ms, wrap in RA: true2025-12-04 09:20:51,653 [ 917] INFO - c.i.p.i.IdeFingerprint - Calculated dependencies fingerprint in 393 ms (hash=1ly75q9igek88, buildTime=1764306300, appVersion=IU-253.28294.251)2025-12-04 09:20:51,673 [ 937] INFO - #c.i.p.trialPromotion - IDE is not managed2025-12-04 09:20:51,815 [ 1079] INFO - #c.i.i.s.e.StatisticsEventLoggerProvider - Initialize event logger provider for 'MLSE'2025-12-04 09:20:51,816 [ 1080] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS scanned: file-by-name index was populated2025-12-04 09:20:51,825 [ 1089] INFO - #c.i.i.s.e.StatisticsEventLoggerProvider - Initialize event logger provider for 'FUS'2025-12-04 09:20:51,825 [ 1089] INFO - #c.i.i.s.e.StatisticsEventLoggerProvider - Initialize event logger provider for 'MP'2025-12-04 09:20:51,825 [ 1089] INFO - #c.i.i.s.e.StatisticsEventLoggerProvider - Initialize event logger provider for 'TRACE'2025-12-04 09:20:51,827 [ 1091] INFO - #c.i.i.s.e.StatisticsEventLoggerProvider - Initialize event logger provider for 'ML'2025-12-04 09:20:51,842 [ 1106] INFO - c.i.s.c.c.n.s.NettyServicesServerBase$Companion - Starting services server on C:\Users\CARLO~1.MAR\AppData\Local\Temp\jb.station.ij.9092.sock2025-12-04 09:20:51,919 [ 1183] INFO - c.i.s.c.c.n.s.NettyServicesServerBase$Companion - Services server started2025-12-04 09:20:51,946 [ 1210] WARN - #c.i.s.c.i.StationSocketConnectionLoop - Discovery connection failed with AnnotatedConnectException(ConnectException) (Connection refused: connect: C:\Users\CARLO~1.MAR\AppData\Local\Temp\jb.station.carlo.marchiori.sock)2025-12-04 09:20:51,982 [ 1246] INFO - #o.j.i.BuiltInServerManager - built-in server started, port 633422025-12-04 09:20:52,028 [ 1292] INFO - #c.i.u.i.c.d.IndexWriter - Use com.intellij.util.indexing.contentQueue.dev.MultiThreadedWithSuspendIndexWriter@1214642a as (parallel) index writer implementation2025-12-04 09:20:52,030 [ 1294] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Starting file watcher: C:\Program Files\JetBrains\IntelliJ IDEA 2025.3\bin\fsnotifier.exe2025-12-04 09:20:52,032 [ 1296] INFO - #c.i.u.i.i.SlruIndexStorageCacheProvider - SLRU cache will be used for indexes2025-12-04 09:20:52,033 [ 1297] INFO - #c.i.u.i.i.MapIndexStorageCacheProvider$Companion - Default index storage cache provider [com.intellij.util.indexing.impl.SlruIndexStorageCacheProvider@22523a37] is used2025-12-04 09:20:52,036 [ 1300] INFO - #c.i.u.i.FileBasedIndexImpl - Loading indexes2025-12-04 09:20:52,087 [ 1351] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Native file watcher is operational.2025-12-04 09:20:52,096 [ 1360] INFO - #c.i.o.v.i.w.WslFileWatcher - WSL file watcher: C:\Program Files\JetBrains\IntelliJ IDEA 2025.3\bin\fsnotifier-wsl2025-12-04 09:20:52,123 [ 1387] INFO - #c.i.i.s.p.i.SharedIndexMainZipStorage - Shared Indexes Storage is opened and empty2025-12-04 09:20:52,244 [ 1508] INFO - #c.i.u.i.PersistentDirtyFilesQueue - Dirty file ids read. Size: 14. Index: 14 Path: C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3\index\dirty-file-ids.2025-12-04 09:20:52,251 [ 1515] INFO - #c.i.u.n.s.CertificateManager - Default SSL context initialized2025-12-04 09:20:52,268 [ 1532] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'sql.types.count.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,268 [ 1532] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'Stubs' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,271 [ 1535] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'sql.routine.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,274 [ 1538] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'HashFragmentIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,278 [ 1542] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'TodoIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,284 [ 1548] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'fileIncludes' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,299 [ 1563] INFO - #c.i.f.n.TrigramIndexFilter - Filter exclude extensions is disabled2025-12-04 09:20:52,299 [ 1563] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'Trigram.Index' index (applicable providers: [default, fake-storage]), shards = 12025-12-04 09:20:52,299 [ 1563] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'filetypes' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,299 [ 1563] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'IdIndex' index (applicable providers: [default, fake-storage]), shards = 12025-12-04 09:20:52,307 [ 1571] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'FrameworkDetectionIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,344 [ 1608] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'FilenameIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,359 [ 1623] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'XmlTagNames' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,388 [ 1652] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'XmlNamespaces' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,452 [ 1716] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'SchemaTypeInheritance' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,464 [ 1728] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'html5.custom.attributes.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,464 [ 1728] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'RelaxSymbolIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,464 [ 1728] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'DomFileIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,483 [ 1747] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'json.file.root.values' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,483 [ 1747] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'CssIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,554 [ 1818] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'css.template.selectors' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,566 [ 1830] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'java.auto.module.name' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,586 [ 1850] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'java.source.module.name' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,590 [ 1854] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'java.null.method.argument' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,593 [ 1857] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'com.intellij.jpa.jpb.model.EntityRegisterFileIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,603 [ 1867] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'PropertyCodeReferenceIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,603 [ 1867] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'xmlProperties' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,603 [ 1867] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'editorconfig.index.name' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,607 [ 1871] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'java.binary.plus.expression' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,607 [ 1871] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'bytecodeAnalysis' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,610 [ 1874] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'java.fun.expression' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,614 [ 1878] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'javafx.custom.component' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,616 [ 1880] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'javafx.id.name' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,625 [ 1889] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'JavaFxControllerClassIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,736 [ 2000] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'spring.spiFileIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,738 [ 2002] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'http.request.completion.host' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,742 [ 2006] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'http.request.execution.environment' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,755 [ 2019] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'spring.autoConfigureMetadataIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,755 [ 2019] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'spring.boot.importsFileIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,755 [ 2019] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'SpringBootYamlImports' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,755 [ 2019] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'SpringBootPropertiesImports' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,755 [ 2019] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'SpringXmlBeansIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,758 [ 2022] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'protoeditor.java.outer.class.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,764 [ 2028] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'javafx.stylesheets.name' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,767 [ 2031] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'LombokConfigIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,859 [ 2123] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'http.request.headers.values.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,893 [ 2157] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'http.request.name.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,904 [ 2168] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'js.test.names' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,907 [ 2171] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'js.custom.single.entry.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,926 [ 2190] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'js.implicit.elements.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,926 [ 2190] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'js.string.literal.words.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,926 [ 2190] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'js.package.index' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,926 [ 2190] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'js.test.names.extensible' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,926 [ 2190] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'TypeScriptExternalPathCandidates' index (applicable providers: [default, fake-storage])2025-12-04 09:20:52,936 [ 2200] INFO - #c.i.u.i.i.s.IndexStorageLayoutLocator - Layout 'default' will be used to for 'HtmlScriptSrcIndex' index (applicable providers: [default, fake-storage])2025-12-04 09:20:53,027 [ 2291] INFO - #c.i.u.i.FileBasedIndexImpl - Indices to be built:FilenameIndex(v = 258)2025-12-04 09:20:53,027 [ 2291] INFO - #c.i.u.i.FileBasedIndexImpl - Using simple flusher for indexes2025-12-04 09:20:53,053 [ 2317] INFO - #c.i.u.i.IndexDataInitializer - Index data initialization done: 999 ms. Initialized indexes: [FilenameIndex, filetypes, sql.types.count.index, sql.routine.index, XmlNamespaces, Trigram.Index, TodoIndex, XmlTagNames, RelaxSymbolIndex, FrameworkDetectionIndex, fileIncludes, CssIndex, json.file.root.values, DomFileIndex, IdIndex, html5.custom.attributes.index, SchemaTypeInheritance, HashFragmentIndex, java.auto.module.name, Stubs, css.template.selectors, java.source.module.name, com.intellij.jpa.jpb.model.EntityRegisterFileIndex, xmlProperties, editorconfig.index.name, java.binary.plus.expression, JavaFxControllerClassIndex, bytecodeAnalysis, PropertyCodeReferenceIndex, javafx.id.name, javafx.custom.component, java.fun.expression, java.null.method.argument, spring.spiFileIndex, spring.boot.importsFileIndex, spring.autoConfigureMetadataIndex, SpringBootPropertiesImports, SpringXmlBeansIndex, http.request.execution.environment, SpringBootYamlImports, protoeditor.java.outer.class.index, javafx.stylesheets.name, http.request.completion.host, LombokConfigIndex, http.request.headers.values.index, http.request.name.index, js.string.literal.words.index, js.implicit.elements.index, js.test.names.extensible, js.package.index, js.test.names, HtmlScriptSrcIndex, TypeScriptExternalPathCandidates, js.custom.single.entry.index].2025-12-04 09:20:53,573 [ 2837] INFO - #c.i.u.i.IndexDataInitializer - Index data initialization done: 534 ms. Initialized stub indexes: {JS.global.qualified.elements, js.generics.index, Css.ampersand.selector, protobuf.byShortName, redis.dml.shortName, amd.baseUrl.index, Css.id, dom.namespaceKey, gr.anonymous.class, ts.external.module.name.index, gr.annot.method.name, ts.local.classes, sql.column.name, js.imported.bindings.index, es6.assignment.index, sql.names, java.annotations, java.anonymous.baseref, java.unnamed.class, gr.script.class, gr.class.super, markdown.header.anchor, js.namespace.index, js.class.index2, Css.custom.variable, java.class.extlist, JS.class.implements, java.record.component.name, jvm.static.member.name, dom.elementClass, markdown.header, js.export.default.react.component.index, js.qualified.shortName, java.method.name, java.method.parameter.types, js.doc.modules, ts.external.module.index, gr.class.fqn.s, protobuf.byQualifiedName, ts.global.exported.index, sql.table.shortName, js.global.symbol.index, gr.field.name, Css.custom.property, ts.embedded.content.index, jvm.static.member.type, java.class.fqn, js.lazy.packages, js.local.namespace.members.index, gr.script.fqn.s, properties.index, amd.requirePaths.index, js.symbol.qualified.names.index, JS.class.super, JS.base.types.index, java.field.name, gr.method.name, js.element.qualifiedName, js.symbol.index2, java.class.shortname, es6.side.effect.import.index, js.exported.index, js.typedef.index2, Css.custom.mixin, JS.framework.markers.index, js.amd.modules, js.gcl.modules, Css.class, es6.exported.index, Css.attr, js.used.remote.modules, js.nonglobal.symbol.index, JS.subclass.stub.index, java.module.name, gr.annot.members}.2025-12-04 09:20:54,175 [ 3439] INFO - #c.i.o.u.i.UpdateCheckerService - channel: release2025-12-04 09:20:54,175 [ 3439] INFO - #c.i.l.LocalizationStateServiceImpl - [i18n] Localization property from registry is null2025-12-04 09:20:54,347 [ 3611] WARN - #c.i.s.c.i.StationSocketConnectionLoop - RecentProjects connection failed with AnnotatedConnectException(ConnectException) (Connection refused: connect: C:\Users\CARLO~1.MAR\AppData\Local\Temp\jb.station.carlo.marchiori.sock)2025-12-04 09:20:54,622 [ 3886] INFO - #c.i.i.p.DisabledPluginsState - Plugins to enable: [com.intellij.modules.ultimate], was already enabled, nothing changed2025-12-04 09:20:54,626 [ 3890] INFO - #c.i.i.p.DynamicPlugins - Plugins to load: []2025-12-04 09:20:54,651 [ 3915] INFO - #c.i.i.p.DisabledPluginsState - Plugins to enable: [com.intellij.modules.ultimate], was already enabled, nothing changed2025-12-04 09:20:54,651 [ 3915] INFO - #c.i.i.p.DynamicPlugins - Plugins to load: []2025-12-04 09:20:54,763 [ 4027] INFO - #c.i.i.p.DisabledPluginsState - Plugins to enable: [com.jetbrains.codeWithMe], was already enabled, nothing changed2025-12-04 09:20:54,763 [ 4027] INFO - #c.i.i.p.DynamicPlugins - Plugins to load: []2025-12-04 09:20:54,778 [ 4042] WARN - #c.i.o.e.c.i.EditorColorsManagerImpl - resource not found: colorSchemes/SqlDefault.xml2025-12-04 09:20:54,786 [ 4050] WARN - #c.i.o.e.c.i.EditorColorsManagerImpl - resource not found: colorSchemes/SqlDarcula.xml2025-12-04 09:20:55,252 [ 4516] INFO - #c.i.e.w.WslDistributionManager - Fetched WSL distributions: [(Ubuntu, version=2)] ("C:\WINDOWS\system32\wsl.exe --list --verbose" done in 377 ms)2025-12-04 09:20:56,768 [ 6032] INFO - #c.i.p.p.ProjectEntitiesStorage - Creating entity for project ProjectId(id=8p27jetggngtt3ek66ne)2025-12-04 09:20:56,800 [ 6064] INFO - #c.i.p.p.ProjectEntitiesStorage - Entity for project ProjectId(id=8p27jetggngtt3ek66ne) created successfully2025-12-04 09:20:56,816 [ 6080] INFO - #c.i.c.ComponentStoreImpl - Project store initialization started for path: C:\progetti\develop\luve\plair\alfalaval_aps and template: null2025-12-04 09:20:56,837 [ 6101] INFO - #c.i.c.ComponentStoreImpl - Project store initialized with paths: [Macro(key=$PROJECT_CONFIG_DIR$, value=C:\progetti\develop\luve\plair\alfalaval_aps\.idea), Macro(key=$WORKSPACE_FILE$, value=C:\progetti\develop\luve\plair\alfalaval_aps\.idea\workspace.xml), Macro(key=$PROJECT_FILE$, value=C:\progetti\develop\luve\plair\alfalaval_aps\.idea\misc.xml), Macro(key=$CACHE_FILE$, value=C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3\projects\alfalaval_aps.665bee5e\cache-state.xml), Macro(key=$PRODUCT_WORKSPACE_FILE$, value=C:\Users\carlo.marchiori\AppData\Roaming\JetBrains\IntelliJIdea2025.3\workspace\2f0PHZx3pprpYN2vVwmFIBjCM0y.xml)]2025-12-04 09:20:56,858 [ 6122] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.Operations.Popup.VcsAware' template presentation. Showing its action-id instead2025-12-04 09:20:56,859 [ 6123] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.Operations.Popup.VcsAware' template presentation. Showing its action-id instead2025-12-04 09:20:56,859 [ 6123] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.Operations.Popup.VcsNameSeparator' template presentation. Showing its action-id instead2025-12-04 09:20:56,859 [ 6123] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.Operations.Popup.Vcs.Providers' template presentation. Showing its action-id instead2025-12-04 09:20:56,859 [ 6123] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.Operations.Popup.NonVcsAware' template presentation. Showing its action-id instead2025-12-04 09:20:56,863 [ 6127] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.Log.HighlightersActionGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,865 [ 6129] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ChangesBrowser.FiltererGroup' stub template presentation. Creating its instance2025-12-04 09:20:56,866 [ 6130] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'XDebugger.Code.Toolbar' template presentation. Showing its action-id instead2025-12-04 09:20:56,867 [ 6131] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RunTab.TopToolbar.More' stub template presentation. Creating its instance2025-12-04 09:20:56,870 [ 6134] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.Open.In.Browser' stub template presentation. Creating its instance2025-12-04 09:20:56,871 [ 6135] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'XDebugger.ToolWindow.TopToolbar3.Extra' stub template presentation. Creating its instance2025-12-04 09:20:56,871 [ 6135] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CWMTelephonyGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,880 [ 6144] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'FileTemplateSeparatorGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,881 [ 6145] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'FileTemplateSeparatorGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,881 [ 6145] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'FileTemplateSeparatorGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,884 [ 6148] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DatabaseView.NewGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,885 [ 6149] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DatabaseView.Ddl.AddObject' template presentation. Showing its action-id instead2025-12-04 09:20:56,895 [ 6159] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DatabaseView.AddDataSourceFromCloud' stub template presentation. Creating its instance2025-12-04 09:20:56,895 [ 6159] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DatabaseView.AddDataSourceFromCloud' stub template presentation. Creating its instance2025-12-04 09:20:56,901 [ 6165] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MigrationMenu1' template presentation. Showing its action-id instead2025-12-04 09:20:56,902 [ 6166] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CreateNewRunConfiguration' stub template presentation. Creating its instance2025-12-04 09:20:56,920 [ 6184] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'OpenInBrowserGroup' stub template presentation. Creating its instance2025-12-04 09:20:56,921 [ 6185] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'OpenInBrowserGroup' stub template presentation. Creating its instance2025-12-04 09:20:56,927 [ 6191] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'InspectCodeActionInPopupMenus' template presentation. Showing its action-id instead2025-12-04 09:20:56,930 [ 6194] INFO - #c.i.o.w.i.ProjectFrameHelper - Creating status bar2025-12-04 09:20:56,938 [ 6202] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorPopupMenuAnalyze' template presentation. Showing its action-id instead2025-12-04 09:20:56,938 [ 6202] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorPopupMenuAnalyze' template presentation. Showing its action-id instead2025-12-04 09:20:56,943 [ 6207] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RecentProjectListGroup' stub template presentation. Creating its instance2025-12-04 09:20:56,944 [ 6208] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'FileMenu.RemoteDevelopmentActions.Gateway' template presentation. Showing its action-id instead2025-12-04 09:20:56,949 [ 6213] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ViewToolbarActionsGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,949 [ 6213] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ViewToolbarActionsGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,953 [ 6217] INFO - #c.i.o.w.i.ProjectFrameHelper - Status bar created2025-12-04 09:20:56,959 [ 6223] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ImportProfilerResultsFromHistory' stub template presentation. Creating its instance2025-12-04 09:20:56,971 [ 6235] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RemoteExternalToolsGroup' template presentation. Showing its action-id instead2025-12-04 09:20:56,971 [ 6235] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.MainMenu' template presentation. Showing its action-id instead2025-12-04 09:20:56,971 [ 6235] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.Specific' template presentation. Showing its action-id instead2025-12-04 09:20:56,974 [ 6238] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Ignore.File' stub template presentation. Creating its instance2025-12-04 09:20:56,977 [ 6241] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.MainMenu' template presentation. Showing its action-id instead2025-12-04 09:20:56,978 [ 6242] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.MainMenu.FileActions' template presentation. Showing its action-id instead2025-12-04 09:20:56,982 [ 6246] INFO - #c.i.o.w.i.ProjectFrameHelper - Setting project frame to Project(name=alfalaval_aps, containerState=PRE_INIT, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)2025-12-04 09:20:56,983 [ 6247] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'TW.MoveToGroup' stub template presentation. Creating its instance2025-12-04 09:20:57,016 [ 6280] INFO - #c.i.o.w.i.s.IdeStatusBarImpl - Initializing status bar2025-12-04 09:20:57,095 [ 6359] INFO - #c.i.o.w.i.h.MainMenuWithButton - Main toolbar not found for recalculation of the menu width2025-12-04 09:20:57,111 [ 6375] INFO - #c.i.o.w.i.ProjectFrameHelper - Project frame set to Project(name=alfalaval_aps, containerState=PRE_INIT, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)2025-12-04 09:20:57,138 [ 6402] INFO - #c.i.w.i.i.WorkspaceModelImpl - Load workspace model from cache in 273 ms2025-12-04 09:20:57,188 [ 6452] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Load global workspace model from cache in 20 ms2025-12-04 09:20:57,234 [ 6498] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added2025-12-04 09:20:57,239 [ 6503] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 1 in 86 ms: Change entity sources to externally imported2025-12-04 09:20:57,445 [ 6709] INFO - #c.i.c.m.CodeInsightContextEnabling - multiverse is enabled2025-12-04 09:20:57,524 [ 6788] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added2025-12-04 09:20:57,528 [ 6792] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 6 in 14 ms: Sync global entities with project: alfalaval_aps2025-12-04 09:20:57,615 [ 6879] INFO - #c.i.c.p.p.ProvisionedCodeWithMeEnterpriseConfiguration - No JBIDES plugin found. Using public/self-configured CWM.2025-12-04 09:20:57,618 [ 6882] INFO - #c.i.r.OsRegistryConfigProvider - Looking for 'isCodeWithMeHostEnabled' value in [HKLM_64\SOFTWARE\JetBrains\CodeWithMe\isCodeWithMeHostEnabled, HKLM_32\SOFTWARE\JetBrains\CodeWithMe\isCodeWithMeHostEnabled, HKCU_64\SOFTWARE\JetBrains\CodeWithMe\isCodeWithMeHostEnabled, HKCU_32\SOFTWARE\JetBrains\CodeWithMe\isCodeWithMeHostEnabled]2025-12-04 09:20:57,618 [ 6882] INFO - #c.i.r.OsRegistryConfigProvider - OS provided value for 'isCodeWithMeHostEnabled' is not found2025-12-04 09:20:57,618 [ 6882] INFO - #c.i.r.OsRegistryConfigProvider - Looking for 'lobbyServerUrl' value in [HKLM_64\SOFTWARE\JetBrains\CodeWithMe\lobbyServerUrl, HKLM_32\SOFTWARE\JetBrains\CodeWithMe\lobbyServerUrl, HKCU_64\SOFTWARE\JetBrains\CodeWithMe\lobbyServerUrl, HKCU_32\SOFTWARE\JetBrains\CodeWithMe\lobbyServerUrl]2025-12-04 09:20:57,618 [ 6882] INFO - #c.i.r.OsRegistryConfigProvider - OS provided value for 'lobbyServerUrl' is not found2025-12-04 09:20:57,967 [ 7231] INFO - #c.i.o.v.i.p.NewMappings - VCS Root: [Git] - [<Project>]2025-12-04 09:20:57,980 [ 7244] INFO - PerformancePlugin - Performance Plugin is in silent mode2025-12-04 09:20:57,985 [ 7249] INFO - #c.i.r.OsRegistryConfigProvider - Looking for 'enabled' value in [HKLM_64\SOFTWARE\JetBrains\portForwarding\enabled, HKLM_32\SOFTWARE\JetBrains\portForwarding\enabled, HKCU_64\SOFTWARE\JetBrains\portForwarding\enabled, HKCU_32\SOFTWARE\JetBrains\portForwarding\enabled]2025-12-04 09:20:57,985 [ 7249] INFO - #c.i.r.OsRegistryConfigProvider - OS provided value for 'enabled' is not found2025-12-04 09:20:58,015 [ 7279] INFO - #copilot - Start to subscribe to Copilot Policy change events2025-12-04 09:20:58,031 [ 7295] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Loading Project code style2025-12-04 09:20:58,042 [ 7306] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded com.intellij.psi.formatter.xml.HtmlCodeStyleSettings2025-12-04 09:20:58,042 [ 7306] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded HTML common code style settings2025-12-04 09:20:58,042 [ 7306] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded JavaScript common code style settings2025-12-04 09:20:58,042 [ 7306] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded TypeScript common code style settings2025-12-04 09:20:58,042 [ 7306] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded XML common code style settings2025-12-04 09:20:58,042 [ 7306] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Project code style loaded2025-12-04 09:20:58,141 [ 7405] INFO - #com.github.copilot.lang.agent.vscodeRpc.AgentProcessHandler - [system] C:\Users\carlo.marchiori\AppData\Roaming\JetBrains\IntelliJIdea2025.3\plugins\github-copilot-intellij\copilot-agent\native\win32-x64\copilot-language-server.exe --stdio2025-12-04 09:20:58,141 [ 7405] INFO - #com.github.copilot.lang.agent.CopilotAgentProcessServiceImpl - Start initialize/initialized handshake, send 'initialize' command2025-12-04 09:20:58,257 [ 7521] INFO - #c.i.o.a.i.ApplicationImpl - LONG VFS PROCESSING. Topic=BulkFileListener, offender=class com.intellij.openapi.vfs.newvfs.AsyncEventSupport$1, message=before, time=219ms2025-12-04 09:20:58,408 [ 7672] INFO - #c.i.p.u.i.s.e.DurableEnumeratorFactory - [enumerator.mmapped]: .valueHashToId (in memory) was filled (47 records)2025-12-04 09:20:58,416 [ 7680] INFO - #c.i.u.i.c.ManagedPersistentCache - created graved-highlighting-alfalaval_aps-665bee5e with size 162025-12-04 09:20:58,416 [ 7680] INFO - #c.i.u.i.c.ManagedPersistentCache - created graved-code-vision-alfalaval_aps-665bee5e with size 452025-12-04 09:20:58,416 [ 7680] INFO - #c.i.u.i.c.ManagedPersistentCache - created graved-doc-render-alfalaval_aps-665bee5e with size 452025-12-04 09:20:58,416 [ 7680] INFO - #c.i.u.i.c.ManagedPersistentCache - created graved-code-folding-alfalaval_aps-665bee5e with size 452025-12-04 09:20:58,416 [ 7680] INFO - #c.i.u.i.c.ManagedPersistentCache - created graved-declarative-hints-alfalaval_aps-665bee5e with size 452025-12-04 09:20:58,416 [ 7680] INFO - #c.i.u.i.c.ManagedPersistentCache - created graved-parameter-hints-alfalaval_aps-665bee5e with size 452025-12-04 09:20:58,755 [ 8019] INFO - #c.i.o.a.i.NonBlockingReadActionImpl - OTel monitoring for NonBlockingReadAction is enabled2025-12-04 09:20:58,791 [ 8055] INFO - #c.i.d.d.DataSourceStorage - Loaded 11 data sources for project alfalaval_aps(C:/progetti/develop/luve/plair/alfalaval_aps/.idea/misc.xml)2025-12-04 09:20:59,300 [ 8564] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@7504a9ad2025-12-04 09:20:59,302 [ 8566] INFO - #c.i.o.p.DumbServiceMergingTaskQueue - Initializing DumbServiceMergingTaskQueue...2025-12-04 09:20:59,303 [ 8567] INFO - #c.i.o.p.DumbServiceMergingTaskQueue - Running initialization condition: com.intellij.indexing.shared.download.SharedIndexDownloadedCondition@42d355c32025-12-04 09:20:59,305 [ 8569] INFO - #c.i.o.p.DumbServiceMergingTaskQueue - Finished: com.intellij.indexing.shared.download.SharedIndexDownloadedCondition@42d355c32025-12-04 09:20:59,399 [ 8663] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.indexing.shared.platform.impl.OnDiskSharedIndexChunkLocator@66527d952025-12-04 09:20:59,401 [ 8665] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.indexing.shared.platform.impl.OnDiskSharedIndexChunkLocator@66527d952025-12-04 09:20:59,403 [ 8667] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@2e2ec6222025-12-04 09:20:59,408 [ 8672] INFO - #c.i.u.i.FileBasedIndexImpl - Indexes are already loaded2025-12-04 09:20:59,409 [ 8673] INFO - #c.i.u.i.PersistentDirtyFilesQueue - Dirty file ids read. Size: 0. Index: 11 Path: C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3\index\dirty-file-queues\665bee5e.2025-12-04 09:20:59,413 [ 8677] INFO - #c.i.u.i.p.IncrementalProjectIndexableFilesFilterHolder - PersistentProjectIndexableFilesFilterFactory is chosen as indexable files filter factory for project: alfalaval_aps2025-12-04 09:20:59,414 [ 8678] INFO - #c.i.u.i.FileBasedIndexImpl - Indexes are already loaded2025-12-04 09:20:59,431 [ 8695] INFO - #c.i.i.p.i.ProjectViewInitNotifier - Project View initialization started2025-12-04 09:20:59,439 [ 8703] INFO - #c.i.u.i.UnindexedFilesScanner - Full scanning on startup will be skipped for project alfalaval_aps2025-12-04 09:20:59,447 [ 8711] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@2e2ec6222025-12-04 09:20:59,447 [ 8711] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Running task: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@2638daa52025-12-04 09:20:59,461 [ 8725] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=0): DelayedPushProperties2025-12-04 09:20:59,461 [ 8725] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@786788c72025-12-04 09:20:59,461 [ 8725] INFO - #c.i.u.i.FilesFilterScanningHandler$IdleFilesFilterScanningHandler - Scanning will happen without filling of project indexable files filter2025-12-04 09:20:59,523 [ 8787] INFO - #c.i.u.i.FileBasedIndexImpl - Indexes are already loaded2025-12-04 09:20:59,539 [ 8803] INFO - #c.i.i.p.i.ProjectViewInitNotifier - Project View cached nodes loaded2025-12-04 09:20:59,630 [ 8894] INFO - #copilot - Start to subscribe to Copilot Policy change events2025-12-04 09:20:59,833 [ 9097] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Started scanning for indexing of alfalaval_aps. Reason: On project open2025-12-04 09:20:59,833 [ 9097] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=0): CreatingIterators2025-12-04 09:20:59,833 [ 9097] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=0): CollectingIndexableFiles2025-12-04 09:20:59,835 [ 9099] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning of alfalaval_aps uses 11 scanning threads2025-12-04 09:20:59,861 [ 9125] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Scanning completed for alfalaval_aps. Number of scanned files: 0; number of files for indexing: 02025-12-04 09:20:59,863 [ 9127] INFO - #c.i.o.p.InitialVfsRefreshService - 665bee5e: marking roots for initial VFS refresh2025-12-04 09:20:59,871 [ 9135] INFO - #c.i.u.i.PerProjectIndexingQueue - Finished for alfalaval_aps. No files to index with loading content.2025-12-04 09:20:59,871 [ 9135] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Task finished (scanning id=0): com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@2638daa52025-12-04 09:20:59,988 [ 9252] INFO - #c.i.o.a.i.ActionUpdater - 433 ms to grab EDT for ToolWindowHeader$2#children@ToolwindowTitle (com.intellij.toolWindow.ToolWindowHeader$2)2025-12-04 09:21:00,137 [ 9401] INFO - #c.i.o.p.InitialVfsRefreshService - 665bee5e: starting initial VFS refresh of 916 roots2025-12-04 09:21:00,182 [ 9446] INFO - #c.i.o.p.InitialVfsRefreshService - 665bee5e: initial VFS refresh finished in 44 ms2025-12-04 09:21:00,344 [ 9608] INFO - #c.i.o.a.i.ActionUpdater - 490 ms to grab EDT for EditorMarkupModelImpl$TrafficLightAction#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$TrafficLightAction)2025-12-04 09:21:00,346 [ 9610] INFO - #c.i.o.a.i.ActionUpdater - 492 ms to grab EDT for EditorMarkupModelImpl$NavigationGroup#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$NavigationGroup)2025-12-04 09:21:00,346 [ 9610] INFO - #c.i.o.a.i.ActionUpdater - 484 ms to grab EDT for InspectionWidgetContentExclusionAction#presentation@EditorInspectionsToolbar (com.github.copilot.status.InspectionWidgetContentExclusionAction)2025-12-04 09:21:00,356 [ 9620] INFO - #c.i.i.s.p.i.SharedIndexChunkConfigurationImpl - Chunk bundled-jdk-30f59d01ecdd-cffe25b9f5b3-intellij.indexing.shared.core-IU-253.28294.251 is registered for project 'alfalaval_aps: matching: (fb=58, stub=62), incompatible: (fb=0, stub=0), unknown: (fb=30, stub=44),2025-12-04 09:21:00,549 [ 9813] INFO - #c.i.o.a.i.ActionUpdater - 560 ms to grab EDT for DockToolWindowAction#presentation@ToolwindowTitle (com.intellij.openapi.wm.impl.DockToolWindowAction)2025-12-04 09:21:00,549 [ 9813] INFO - #c.i.i.s.p.i.SharedIndexChunkConfigurationImpl - Chunk bundled-js-predefined-d6986cc7102b-c7e53b3be11b-JavaScript-IU-253.28294.251 is registered for project 'alfalaval_aps: matching: (fb=52, stub=85), incompatible: (fb=4, stub=0), unknown: (fb=36, stub=59),2025-12-04 09:21:00,549 [ 9813] INFO - #c.i.o.a.i.ActionUpdater - 485 ms to grab EDT for ExpandAllAction#presentation@ToolwindowTitle (ExpandAllAction) "ExpandAll"2025-12-04 09:21:00,549 [ 9813] INFO - #c.i.o.a.i.ActionUpdater - 485 ms to grab EDT for ExpandRecursivelyAction#presentation@ToolwindowTitle (com.intellij.ide.projectView.actions.ExpandRecursivelyAction) "ExpandRecursively"2025-12-04 09:21:00,549 [ 9813] INFO - #c.i.o.a.i.ActionUpdater - 486 ms to grab EDT for CollapseAllAction#presentation@ToolwindowTitle (CollapseAllAction) "CollapseAll"2025-12-04 09:21:00,559 [ 9823] INFO - #c.i.i.s.p.i.SharedIndexInfrastructure - Attached 2 shared indexes: bundled-jdk-30f59d01ecdd-cffe25b9f5b3-intellij.indexing.shared.core-IU-253.28294.251, bundled-js-predefined-d6986cc7102b-c7e53b3be11b-JavaScript-IU-253.28294.2512025-12-04 09:21:00,559 [ 9823] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@786788c72025-12-04 09:21:00,575 [ 9839] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@4cad954d2025-12-04 09:21:00,575 [ 9839] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@4cad954d2025-12-04 09:21:00,586 [ 9850] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@7e9ebac72025-12-04 09:21:00,586 [ 9850] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@7e9ebac72025-12-04 09:21:00,586 [ 9850] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@1864ad762025-12-04 09:21:00,589 [ 9853] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@1864ad762025-12-04 09:21:00,589 [ 9853] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@7504a9ad2025-12-04 09:21:00,762 [ 10026] INFO - #c.i.o.e.s.p.m.ExternalProjectsDataStorage - Load external projects data in 0 millis (read time: 0)2025-12-04 09:21:00,793 [ 10057] INFO - #c.i.d.u.SqlDialects - SQL dialects initialized in 4 ms2025-12-04 09:21:00,839 [ 10103] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [alfalaval_aps]2025-12-04 09:21:00,894 [ 10158] INFO - #git4idea.commands.GitHandler - [C:\progetti\develop\luve\plair\alfalaval_aps] git -c core.quotepath=false -c log.showSignature=false version2025-12-04 09:21:00,908 [ 10172] INFO - #c.i.o.v.i.p.NewMappings - Mapped Roots: 12025-12-04 09:21:00,908 [ 10172] INFO - #c.i.o.v.i.p.NewMappings - Detected mapped Root: [Git] - [C:/progetti/develop/luve/plair/alfalaval_aps]2025-12-04 09:21:01,195 [ 10459] INFO - #c.i.c.CompilerWorkspaceConfiguration - Available processors: 122025-12-04 09:21:01,246 [ 10510] INFO - #o.j.i.maven - Updating index list for project Project(name=alfalaval_aps, containerState=COMPONENT_CREATED, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)2025-12-04 09:21:01,246 [ 10510] INFO - #o.j.i.maven - updating index list for Project(name=alfalaval_aps, containerState=COMPONENT_CREATED, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps) - will add repository local:local:C:\Users\carlo.marchiori\.m2\repository, before was null2025-12-04 09:21:01,254 [ 10518] INFO - #o.j.i.maven - Starting update maven index for local:local:C:\Users\carlo.marchiori\.m2\repository2025-12-04 09:21:01,312 [ 10576] INFO - #c.i.o.a.i.ActionUpdater - 314 ms to grab EDT for ToolWindowHeader$2#children@ToolwindowTitle (com.intellij.toolWindow.ToolWindowHeader$2)2025-12-04 09:21:01,393 [ 10657] INFO - #git4idea.commands.GitHandler - git version 2.52.0.windows.12025-12-04 09:21:01,446 [ 10710] INFO - #git4idea.config.GitExecutableFileTester - Git version for C:\Program Files\Git\bin\git.exe: 2.52.0.0 (MSYS)2025-12-04 09:21:01,475 [ 10739] INFO - #c.i.i.s.p.i.BundledSharedIndexPostStartupActivity - Attached 2 pre-built shared indexes: bundled-jdk-30f59d01ecdd-cffe25b9f5b3-intellij.indexing.shared.core-IU-253.28294.251, bundled-js-predefined-d6986cc7102b-c7e53b3be11b-JavaScript-IU-253.28294.2512025-12-04 09:21:01,552 [ 10816] INFO - #c.i.i.s.IdeStartupScripts - 0 startup script(s) found2025-12-04 09:21:01,582 [ 10846] INFO - #c.i.d.PerformanceWatcherImpl - Post-startup activities under progress took 904ms; general responsiveness: ok; EDT responsiveness: ok2025-12-04 09:21:01,589 [ 10853] INFO - #c.i.o.u.i.ExternalUpdateManager - update manager: -2025-12-04 09:21:01,690 [ 10954] INFO - #c.i.v.l.d.VcsLogData - Vcs log index is turned off in the registry2025-12-04 09:21:02,330 [ 11594] INFO - #c.i.o.a.i.ActionUpdater - 470 ms to grab EDT for DockToolWindowAction#presentation@ToolwindowTitle (com.intellij.openapi.wm.impl.DockToolWindowAction)2025-12-04 09:21:02,330 [ 11594] INFO - #c.i.o.a.i.ActionUpdater - 451 ms to grab EDT for ExpandRecursivelyAction#presentation@ToolwindowTitle (com.intellij.ide.projectView.actions.ExpandRecursivelyAction) "ExpandRecursively"2025-12-04 09:21:02,330 [ 11594] INFO - #c.i.o.a.i.ActionUpdater - 451 ms to grab EDT for ExpandAllAction#presentation@ToolwindowTitle (ExpandAllAction) "ExpandAll"2025-12-04 09:21:02,330 [ 11594] INFO - #c.i.o.a.i.ActionUpdater - 451 ms to grab EDT for CollapseAllAction#presentation@ToolwindowTitle (CollapseAllAction) "CollapseAll"2025-12-04 09:21:02,356 [ 11620] INFO - #c.i.p.j.n.PackageJsonPolySymbolsRegistryManager - Notifying that Poly Symbol context may have changed due to changes in loaded Web Types from package.jsons.2025-12-04 09:21:02,360 [ 11624] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Loading global entities com.intellij.platform.workspace.jps.entities.SdkEntity from files2025-12-04 09:21:02,374 [ 11638] INFO - #c.i.d.d.DataSourceModelStorageImpl - No model loaded for: 00 - local [plair] (80685c4e-efec-490b-aa5d-f683ae838bfd), 00 - local [aps] (6dd35f5b-6cdc-4864-8d2d-1b93461220fb), 03 - cpq-dev [aps] (84034a5c-454c-4f49-8d72-42589e22fa8d), 03 - cpq-dev [plair] (e65bc55f-bdd2-4289-b812-a52be8a36116), 05 - production [aps] (e97fb11a-c396-4c92-b36a-418addcb5924), 05 - production [plair] (c48146b9-5318-4069-8652-e3c36f51423f), 02 - develop [aps] (cccfd00e-cd28-45c6-b7b6-8522de95e528), 02 - develop [plair] (67d60763-3037-4493-9154-59ce6dfe3f57), 04 - cpq-test [aps] (2d10d673-b2a1-40c3-86f2-9b87ff0bbec4), 04 - cpq-test [plair] (1cbbfa0e-71a4-456a-8df6-cd754eb1e1c7), 01 - local [docker] (934460ea-f00c-4d99-a9e7-459c600f7ba3)2025-12-04 09:21:02,402 [ 11666] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Loading global entities com.intellij.platform.workspace.jps.entities.LibraryEntity from files2025-12-04 09:21:02,463 [ 11727] INFO - #com.github.copilot.lang.agent.CopilotAgentProcessServiceImpl - Continue initialize/initialized handshake, send 'initialized' command2025-12-04 09:21:02,471 [ 11735] INFO - #com.github.copilot.lang.agent.CopilotAgentProcessServiceImpl - Agent initialized successfully2025-12-04 09:21:02,511 [ 11775] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added2025-12-04 09:21:02,511 [ 11775] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 7 in 16 ms: Sync global entities with project: alfalaval_aps2025-12-04 09:21:02,511 [ 11775] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Global model updated to version 2 in 42 ms: Sync global entities with state2025-12-04 09:21:02,590 [ 11854] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Running task: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@766f24762025-12-04 09:21:02,592 [ 11856] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=1): DelayedPushProperties2025-12-04 09:21:02,627 [ 11891] INFO - #c.i.u.i.FileBasedIndexImpl - Indexes are already loaded2025-12-04 09:21:02,725 [ 11989] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Started scanning for indexing of alfalaval_aps. Reason: DbSrc:// data sources changed dialects2025-12-04 09:21:02,729 [ 11993] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Scanning is interrupted (scanning id=1). Full scanning is queued2025-12-04 09:21:02,729 [ 11993] INFO - #c.i.u.i.PerProjectIndexingQueue - Finished for alfalaval_aps. No files to index with loading content.2025-12-04 09:21:02,729 [ 11993] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Task interrupted: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@766f2476. Full scanning is queued2025-12-04 09:21:02,731 [ 11995] INFO - #c.i.u.i.d.ProjectIndexingDependenciesService - Requesting heavy scanning on project open. Reason: Task interrupted: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@766f24762025-12-04 09:21:02,731 [ 11995] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Task was cancelled: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@766f2476. (enable debug log to see cancellation trace)2025-12-04 09:21:02,735 [ 11999] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Running task: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@125aad092025-12-04 09:21:02,735 [ 11999] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=2): DelayedPushProperties2025-12-04 09:21:02,758 [ 12022] INFO - #c.i.u.i.FileBasedIndexImpl - Indexes are already loaded2025-12-04 09:21:02,760 [ 12024] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Started scanning for indexing of alfalaval_aps. Reason: DbSrc:// data sources changed dialects2025-12-04 09:21:02,760 [ 12024] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=2): CreatingIterators2025-12-04 09:21:02,796 [ 12060] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Scanning is interrupted (scanning id=2). Full scanning is queued2025-12-04 09:21:02,798 [ 12062] INFO - #c.i.u.i.PerProjectIndexingQueue - Finished for alfalaval_aps. No files to index with loading content.2025-12-04 09:21:02,798 [ 12062] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Task interrupted: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@125aad09. Full scanning is queued2025-12-04 09:21:02,798 [ 12062] INFO - #c.i.u.i.d.ProjectIndexingDependenciesService - Requesting heavy scanning on project open. Reason: Task interrupted: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@125aad092025-12-04 09:21:02,798 [ 12062] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Task was cancelled: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@125aad09. (enable debug log to see cancellation trace)2025-12-04 09:21:02,800 [ 12064] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Running task: com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@19ff5dfb2025-12-04 09:21:02,802 [ 12066] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=3): DelayedPushProperties2025-12-04 09:21:02,806 [ 12070] INFO - #c.i.u.i.FileBasedIndexImpl - Indexes are already loaded2025-12-04 09:21:02,806 [ 12070] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Started scanning for indexing of alfalaval_aps. Reason: DbSrc:// data sources changed dialects2025-12-04 09:21:02,806 [ 12070] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=3): CreatingIterators2025-12-04 09:21:02,954 [ 12218] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] scanning stage (scanning id=3): CollectingIndexableFiles2025-12-04 09:21:02,954 [ 12218] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning of alfalaval_aps uses 11 scanning threads2025-12-04 09:21:03,042 [ 12306] INFO - #c.i.p.i.c.i.i.JavaIdIndexer - skipSourceFilesInLibraries: false (registry: 'ide.index.id.skip.java.sources.in.libs')2025-12-04 09:21:03,042 [ 12306] INFO - #c.i.p.i.c.i.i.JavaIdIndexer - skipSourceFilesInLibraries: false (registry: 'ide.index.id.skip.java.sources.in.libs')2025-12-04 09:21:03,109 [ 12373] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of ClassUtils.java (id=72695) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,109 [ 12373] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of package-info.java (id=134247) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,109 [ 12373] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of Status.java (id=73999) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,109 [ 12373] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of KafkaHeaders.java (id=151032) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,121 [ 12385] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of Transaction.java (id=74001) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,121 [ 12385] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of ClassFilter.java (id=72697) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,121 [ 12385] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of ByteLocaleConverter.java (id=134255) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,121 [ 12385] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of TracingFilter.java (id=151030) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,121 [ 12385] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of Transactional.java (id=74004) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:03,121 [ 12385] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of DateLocaleConverter.java (id=134257) by request of indexes: [Trigram.Index->NOT_INDEXED(not indexed),].2025-12-04 09:21:04,141 [ 13405] INFO - #copilot - [certificates] Removed 13 expired certificates2025-12-04 09:21:04,224 [ 13488] INFO - #copilot - [lsp] GitHub Copilot Language Server 1.396.0 initialized2025-12-04 09:21:04,224 [ 13488] INFO - #copilot - [default] Policy watcher started for GitHub Copilot Plugin2025-12-04 09:21:04,320 [ 13584] INFO - #copilot - Policy updated - MCP: true, Subagent: true2025-12-04 09:21:04,638 [ 13902] INFO - #com.github.copilot.mcp.extension.McpExtensionService - Enabling McpExtensionService2025-12-04 09:21:04,638 [ 13902] INFO - #com.github.copilot.mcp.extension.listener.ExtensionPointListenerManager - Initializing extension point monitoring2025-12-04 09:21:04,667 [ 13931] INFO - #com.github.copilot.mcp.extension.listener.ExtensionPointListenerManager - Found 0 existing MCP providers2025-12-04 09:21:04,667 [ 13931] INFO - #com.github.copilot.mcp.extension.listener.ExtensionPointListenerManager - Extension point monitoring initialized successfully2025-12-04 09:21:04,667 [ 13931] INFO - #com.github.copilot.mcp.extension.McpExtensionService - McpExtensionService enabled successfully2025-12-04 09:21:04,667 [ 13931] INFO - #copilot - MCP Extension Service started successfully2025-12-04 09:21:04,667 [ 13931] INFO - #copilot - Policy updated - MCP: true, Subagent: true2025-12-04 09:21:04,667 [ 13931] INFO - #com.github.copilot.mcp.extension.McpExtensionService - Enabling McpExtensionService2025-12-04 09:21:04,667 [ 13931] INFO - #com.github.copilot.mcp.extension.McpExtensionService - McpExtensionService enabled successfully2025-12-04 09:21:04,667 [ 13931] INFO - #copilot - MCP Extension Service started successfully2025-12-04 09:21:04,699 [ 13963] INFO - #copilot - [GithubAvailableEmbeddingTypes] Got embeddings. Primary: metis-1024-I16-Binary. Deprecated:2025-12-04 09:21:05,406 [ 14670] INFO - #copilot - [AutoModelService] Auto model cache cleared due to token update2025-12-04 09:21:05,406 [ 14670] INFO - #copilot - [CopilotMCP] MCP state changed from false to true2025-12-04 09:21:05,864 [ 15128] INFO - #copilot - [Semantic Search] Semantic search feature flag is updated {shouldEnableSemanticSearch: false,ideSemanticSearchEnabledExpFlag: false,editorPreviewFeaturesDisabled: false}2025-12-04 09:21:07,394 [ 16658] INFO - #c.i.u.n.IdeProxySelector - unable to autodetect proxy settings, using NO_PROXY2025-12-04 09:21:08,123 [ 17387] INFO - #c.i.o.p.DumbServiceImpl - [Project(name=alfalaval_aps, containerState=COMPONENT_CREATED, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)]: running dumb task without visible indicator: Waiting for scanning to complete2025-12-04 09:21:08,137 [ 17401] INFO - #com.github.copilot.agent.session.persistence.MigrationAgentSessionPersistenceService - Migration for Ask mode already completed, skipping.2025-12-04 09:21:08,219 [ 17483] INFO - STDERR - SLF4J(E): A service provider failed to instantiate:2025-12-04 09:21:08,219 [ 17483] INFO - STDERR - org.slf4j.spi.SLF4JServiceProvider: org.slf4j.jul.JULServiceProvider not a subtype2025-12-04 09:21:08,319 [ 17583] INFO - #o.j.p.g.p.GHPRStatisticsCollector - Unknown rate limit resource: unknown2025-12-04 09:21:08,345 [ 17609] INFO - #c.i.o.p.DumbServiceImpl - enter dumb mode [alfalaval_aps]2025-12-04 09:21:08,494 [ 17758] INFO - #c.i.l.u.p.RemoteFeatureDisabler - Verdict: Enabled2025-12-04 09:21:08,503 [ 17767] INFO - #c.i.l.u.p.AIPromoWindowStatistics - Starting state calculation for stage MarkerFilePresent2025-12-04 09:21:08,517 [ 17781] INFO - #c.i.c.b.IsUpToDateCheckStartupActivity - activity started2025-12-04 09:21:08,522 [ 17786] INFO - #c.i.l.u.p.AIPromoWindowStatistics - State calculation for stage MarkerFilePresent finished2025-12-04 09:21:08,524 [ 17788] INFO - #c.i.l.u.p.AIPromoWindowStatistics - Starting state calculation for stage DelayedProject2025-12-04 09:21:08,524 [ 17788] INFO - #c.i.l.u.p.AIPromoWindowStatistics - State calculation for stage DelayedProject finished2025-12-04 09:21:08,524 [ 17788] INFO - #c.i.l.u.p.AIPromoWindowAdvisor - Calculated verdict in 7669 ms: false, isCalculatedInAcceptableTime: true2025-12-04 09:21:08,524 [ 17788] INFO - #c.i.l.u.p.AIPromoWindowAdvisor - Remote verdict: Enabled, isAIAssistantInstalled: false2025-12-04 09:21:08,524 [ 17788] INFO - #c.i.l.u.p.AIPromoWindowAdvisor - Verdict is false, promo won't be shown2025-12-04 09:21:08,667 [ 17931] INFO - STDERR - [DefaultDispatcher-worker-68] INFO jetbrains.exodus.io.FileDataWriter - Uninterruptible file channel will be used2025-12-04 09:21:08,667 [ 17931] INFO - STDERR - [DefaultDispatcher-worker-68] WARN jetbrains.exodus.io.FileDataWriter - Can't open directory channel. Log directory fsync won't be performed.2025-12-04 09:21:08,689 [ 17953] INFO - #c.i.p.d.i.f.FrontendXBreakpointManager - Breakpoint created for XBreakpointId(uid=1)2025-12-04 09:21:08,689 [ 17953] INFO - #c.i.p.d.i.f.FrontendXBreakpointManager - Breakpoint created for XBreakpointId(uid=2)2025-12-04 09:21:08,692 [ 17956] INFO - #c.i.p.d.i.f.FrontendXBreakpointManager - Breakpoint created for XBreakpointId(uid=3)2025-12-04 09:21:08,705 [ 17969] INFO - #c.i.d.WindowsDefenderCheckerActivity - real-time protection: false2025-12-04 09:21:08,777 [ 18041] INFO - #o.j.p.g.p.GHPRStatisticsCollector - Unknown rate limit resource: unknown2025-12-04 09:21:08,807 [ 18071] INFO - #c.i.c.b.CompilerReferenceServiceBase - initialized2025-12-04 09:21:08,884 [ 18148] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Sync global entities with mutable entity storage2025-12-04 09:21:08,900 [ 18164] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=alfalaval_aps, containerState=COMPONENT_CREATED, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)CompilerConfiguration took 979 ms, DataSourceManagerImpl took 5229 ms, DataSourcePerFileMappings took 196 ms, DatabaseMigrationSettings took 231 ms, DependencyValidationManager took 195 ms, DynamicElementsStorage took 51 ms, ExternalDependencies took 15 ms, JavaScriptLibraryMappings took 23 ms, JsonSchemaMappingsProjectConfiguration took 15 ms, MavenCompilerTasksManager took 13 ms, MavenProjectsManager took 36 ms, ModuleRenamingHistory took 44 ms, PrettierConfiguration took 47 ms2025-12-04 09:21:08,906 [ 18170] WARN - #c.i.g.c.l.GrazieLoginManager - Need explicit activation dialog agreement, so skipping cloud login2025-12-04 09:21:08,906 [ 18170] INFO - #c.i.c.s.BuildManager - com.intellij.openapi.progress.IndicatorCancellationExceptionjava.lang.Throwable: Control-flow exceptions (e.g. this class com.intellij.openapi.progress.CeProcessCanceledException) should never be logged. Instead, these should have been rethrown if caught.at com.intellij.openapi.diagnostic.Logger.ensureNotControlFlow(Logger.java:504)at com.intellij.idea.IdeaLogger.info(IdeaLogger.java:144)at com.intellij.openapi.diagnostic.Logger.info(Logger.java:309)at com.intellij.compiler.server.BuildManager.lambda$scheduleBuild$19(BuildManager.java:998)at com.intellij.openapi.progress.util.BackgroundTaskUtil.lambda$submitTask$8(BackgroundTaskUtil.java:267)at com.intellij.openapi.progress.util.BackgroundTaskUtil.lambda$createBackgroundTask$10(BackgroundTaskUtil.java:303)at com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(ProgressManager.java:98)at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:256)at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$14(CoreProgressManager.java:717)at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:792)at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:748)at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:716)at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:75)at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:240)at com.intellij.openapi.progress.ProgressManager.runProcess(ProgressManager.java:98)at com.intellij.openapi.progress.util.BackgroundTaskUtil.lambda$createBackgroundTask$11(BackgroundTaskUtil.java:298)at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768)at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)at com.intellij.util.concurrency.ChildContext$runInChildContext$1.invoke(propagation.kt:167)at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:173)at com.intellij.util.concurrency.ChildContext.runInChildContext(propagation.kt:167)at com.intellij.util.concurrency.ContextRunnable.lambda$run$0(ContextRunnable.java:26)at com.intellij.concurrency.ThreadContext.resetThreadContext(threadContext.kt:294)at com.intellij.util.concurrency.ContextRunnable.run(ContextRunnable.java:25)at com.intellij.util.concurrency.BoundedTaskExecutor.doRun(BoundedTaskExecutor.java:248)at com.intellij.util.concurrency.BoundedTaskExecutor.access$200(BoundedTaskExecutor.java:27)at com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue(BoundedTaskExecutor.java:226)at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:249)at com.intellij.util.concurrency.BoundedTaskExecutor$1.run(BoundedTaskExecutor.java:211)at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144)at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642)at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:735)at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:732)at java.base/java.security.AccessController.doPrivileged(AccessController.java:400)at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:732)at java.base/java.lang.Thread.run(Thread.java:1583)Caused by: com.intellij.openapi.progress.CeProcessCanceledException: com.intellij.openapi.progress.IndicatorCancellationExceptionat com.intellij.openapi.progress.CoroutinesKt.runBlockingCancellable$lambda$0(coroutines.kt:154)at com.intellij.openapi.progress.ContextKt.prepareIndicatorThreadContext$lambda$1$0(context.kt:110)at com.intellij.concurrency.ThreadContext.resetThreadContext(threadContext.kt:294)at com.intellij.openapi.progress.ContextKt.prepareIndicatorThreadContext$lambda$1(context.kt:109)at com.intellij.openapi.progress.impl.CoreProgressManager.silenceGlobalIndicator(CoreProgressManager.java:1086)at com.intellij.openapi.progress.ContextKt.prepareIndicatorThreadContext(context.kt:108)at com.intellij.openapi.progress.ContextKt.prepareThreadContext(context.kt:79)at com.intellij.openapi.progress.CoroutinesKt.runBlockingCancellable(coroutines.kt:134)at com.intellij.openapi.progress.CoroutinesKt.runBlockingMaybeCancellable(coroutines.kt:197)at com.intellij.ide.impl.ProjectUtilKt.runUnderModalProgressIfIsEdt(ProjectUtil.kt:773)at com.intellij.openapi.project.impl.ProjectImpl.save(ProjectImpl.kt:413)at com.intellij.compiler.server.BuildManager.lambda$scheduleBuild$19(BuildManager.java:995)... 32 moreCaused by: com.intellij.openapi.progress.IndicatorCancellationExceptionat com.intellij.openapi.progress.ContextKt$cancelWithIndicator$1.invokeSuspend(context.kt:136)at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:34)at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:100)at kotlinx.coroutines.internal.LimitedDispatcher$Worker.run(LimitedDispatcher.kt:113)at kotlinx.coroutines.scheduling.TaskImpl.run(Tasks.kt:89)at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:610)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:1188)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:775)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:762)Caused by: com.intellij.openapi.progress.ProcessCanceledExceptionat com.intellij.openapi.progress.EmptyProgressIndicatorBase.checkCanceled(EmptyProgressIndicatorBase.java:74)at com.intellij.openapi.progress.ContextKt$cancelWithIndicator$1.invokeSuspend(context.kt:132)... 8 moreSuppressed: java.lang.Throwable: Dummy throwable that indicates cancellation of EmptyProgressIndicator.Set `ide.rich.cancellation.traces` to `true` to get real origin of cancellation.at com.intellij.openapi.progress.EmptyProgressIndicator.<clinit>(EmptyProgressIndicator.java:20)at com.intellij.openapi.progress.CoroutinesKt.contextToIndicator(coroutines.kt:539)at com.intellij.openapi.progress.CoroutinesKt.blockingContextToIndicator(coroutines.kt:516)at com.intellij.execution.impl.RunManagerImpl$loadRunConfigsFromArbitraryFiles$1.invokeSuspend$lambda$0(RunManagerImpl.kt:406)at com.intellij.openapi.application.rw.InternalReadAction.insideReadAction(InternalReadAction.kt:111)at com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable$lambda$0(InternalReadAction.kt:101)at com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$0$0$0(cancellableReadAction.kt:32)at com.intellij.platform.locking.impl.NestedLocksThreadingSupport.tryRunReadAction(NestedLocksThreadingSupport.kt:902)at com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(ApplicationImpl.java:1237)at com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$0$0(cancellableReadAction.kt:30)at com.intellij.openapi.progress.util.ProgressIndicatorUtilService.runActionAndCancelBeforeWrite(ProgressIndicatorUtilService.java:73)at com.intellij.openapi.progress.util.ProgressIndicatorUtils.runActionAndCancelBeforeWrite(ProgressIndicatorUtils.java:152)at com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal$lambda$0(cancellableReadAction.kt:28)at com.intellij.concurrency.ThreadContext.installThreadContext(threadContext.kt:305)at com.intellij.concurrency.ThreadContext.installThreadContext$default(threadContext.kt:303)at com.intellij.openapi.application.rw.CancellableReadActionKt.cancellableReadActionInternal(cancellableReadAction.kt:24)at com.intellij.openapi.application.rw.InternalReadAction.tryReadCancellable(InternalReadAction.kt:100)at com.intellij.openapi.application.rw.InternalReadAction.tryReadAction(InternalReadAction.kt:86)at com.intellij.openapi.application.rw.InternalReadAction.readLoop(InternalReadAction.kt:73)at com.intellij.openapi.application.rw.InternalReadAction.access$readLoop(InternalReadAction.kt:15)at com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invokeSuspend(InternalReadAction.kt:52)at com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(InternalReadAction.kt)at com.intellij.openapi.application.rw.InternalReadAction$runReadAction$6.invoke(InternalReadAction.kt)at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:44)at kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(Builders.common.kt:166)at kotlinx.coroutines.BuildersKt.withContext(Unknown Source)at com.intellij.openapi.application.rw.InternalReadAction.runReadAction(InternalReadAction.kt:50)at com.intellij.openapi.application.rw.PlatformReadWriteActionSupport.executeReadAction(PlatformReadWriteActionSupport.kt:66)at com.intellij.openapi.application.ReadWriteActionSupport.executeReadAction$default(ReadWriteActionSupport.kt:15)at com.intellij.openapi.application.CoroutinesKt.constrainedReadAction(coroutines.kt:60)at com.intellij.openapi.application.CoroutinesKt.readAction(coroutines.kt:27)at com.intellij.execution.impl.RunManagerImpl$loadRunConfigsFromArbitraryFiles$1.invokeSuspend(RunManagerImpl.kt:405)at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:34)at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:100)at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:610)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runDefaultDispatcherTask(CoroutineScheduler.kt:1194)at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:906)... 2 more2025-12-04 09:21:08,909 [ 18173] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Apply JPS storage (iml files)2025-12-04 09:21:08,950 [ 18214] INFO - STDERR - [DefaultDispatcher-worker-68] INFO jetbrains.exodus.env.EnvironmentImpl - Exodus environment created: C:\Users\carlo.marchiori\AppData\Local\github-copilot\iu\chat-edit-sessions\2f0PHZx3pprpYN2vVwmFIBjCM0y2025-12-04 09:21:08,997 [ 18261] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added2025-12-04 09:21:08,999 [ 18263] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 82025-12-04 09:21:09,003 [ 18267] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Changes were successfully applied2025-12-04 09:21:09,011 [ 18275] INFO - #c.i.w.i.i.j.s.DelayedProjectSynchronizer$Util - Workspace model loaded from cache. Syncing real project state into workspace model in 655 ms. Thread[#29,DefaultDispatcher-worker-9,5,main]2025-12-04 09:21:09,068 [ 18332] INFO - STDERR - [DefaultDispatcher-worker-30] INFO jetbrains.exodus.env.EnvironmentImpl - Exodus environment created: C:\Users\carlo.marchiori\AppData\Local\github-copilot\iu\chat-sessions\2f0PHZx3pprpYN2vVwmFIBjCM0y2025-12-04 09:21:09,346 [ 18610] INFO - #com.github.copilot.agent.edit.session.persistence.MigrationEditSessionPersistenceService - Migration for Ask mode already completed, skipping.2025-12-04 09:21:09,390 [ 18654] INFO - #com.github.copilot.chat.session.persistence.MigrationChatSessionPersistenceService - Migration for Ask mode already completed, skipping.2025-12-04 09:21:09,391 [ 18655] INFO - #kotlinx.coroutines.CoroutineScope - Migration for Ask mode already completed, skipping.2025-12-04 09:21:09,408 [ 18672] INFO - #c.i.o.a.i.ActionUpdater - 561 ms to grab EDT for FontEditorPreview$RestorePreviewTextAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$RestorePreviewTextAction) "RestoreFontPreviewTextAction"2025-12-04 09:21:09,409 [ 18673] INFO - #c.i.o.a.i.ActionUpdater - 561 ms to grab EDT for FontEditorPreview$ToggleBoldFontAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$ToggleBoldFontAction) "fontEditorPreview.ToggleBoldFont"2025-12-04 09:21:09,455 [ 18719] INFO - #o.j.i.maven - GAV index updated for repo C:\Users\carlo.marchiori\.m2\repository, 11404 files processed in 809 groups in 8177 millis, succeed = true2025-12-04 09:21:09,495 [ 18759] INFO - #c.i.o.a.i.ActionUpdater - 402 ms to grab EDT for EditorMarkupModelImpl$TrafficLightAction#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$TrafficLightAction)2025-12-04 09:21:09,495 [ 18759] INFO - #c.i.o.a.i.ActionUpdater - 403 ms to grab EDT for EditorMarkupModelImpl$NavigationGroup#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$NavigationGroup)2025-12-04 09:21:09,495 [ 18759] INFO - #c.i.o.a.i.ActionUpdater - 402 ms to grab EDT for InspectionWidgetContentExclusionAction#presentation@EditorInspectionsToolbar (com.github.copilot.status.InspectionWidgetContentExclusionAction)2025-12-04 09:21:09,521 [ 18785] WARN - #c.i.g.c.l.GrazieLoginManager - Need explicit activation dialog agreement, so skipping cloud login2025-12-04 09:21:09,675 [ 18939] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scanner has updated file sqldialects.xml (id=47853) with appliers: [] and removers: [SingleIndexValueRemover{indexId=TodoIndex, inputId=47853, fileInfo='sqldialects.xml(id=47853)', applicationMode =SameThreadOutsideReadLock}];2025-12-04 09:21:10,026 [ 19290] INFO - #c.i.u.i.UnindexedFilesScanner - [665bee5e] Scanning completed for alfalaval_aps. Number of scanned files: 207822; number of files for indexing: 638242025-12-04 09:21:10,032 [ 19296] INFO - #c.i.o.p.UnindexedFilesScannerExecutor - [665bee5e] Task finished (scanning id=3): com.intellij.util.indexing.UnindexedFilesScannerExecutorImpl$ScheduledScanningTask@19ff5dfb2025-12-04 09:21:10,054 [ 19318] INFO - #c.i.i.p.i.ProjectViewInitNotifier - Project View initialization completed2025-12-04 09:21:10,083 [ 19347] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) UnindexedFilesIndexer[alfalaval_aps, reasons: [DbSrc:// data sources changed dialects]]2025-12-04 09:21:10,087 [ 19351] INFO - #c.i.u.i.FileBasedIndexImpl - Indexes are already loaded2025-12-04 09:21:10,113 [ 19377] INFO - #c.i.u.i.c.IndexUpdateRunner - Using 11 workers for indexing and 4 for writing indexes2025-12-04 09:21:10,180 [ 19444] INFO - #c.i.o.p.DumbServiceImpl - [Project(name=alfalaval_aps, containerState=COMPONENT_CREATED, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)]: finished dumb task without visible indicator: Waiting for scanning to complete2025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Loading selected model for scope: edit-panel (original scope: edit-panel)2025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Loading selected model for scope: chat-panel (original scope: agent-panel)2025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Chat default model from CAPI: gpt-4.12025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Chat default model from CAPI: gpt-4.12025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Selected chat default model from CAPI: GPT-4.12025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Selected chat default model from CAPI: GPT-4.12025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Loading selected model for scope: chat-panel (original scope: agent-panel)2025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Chat default model from CAPI: gpt-4.12025-12-04 09:21:10,335 [ 19599] INFO - #com.github.copilot.chat.input.ModelPickPanel - Selected chat default model from CAPI: GPT-4.12025-12-04 09:21:10,336 [ 19600] INFO - #com.github.copilot.chat.input.ModelPickPanel - Loading selected model for scope: chat-panel (original scope: chat-panel)2025-12-04 09:21:10,336 [ 19600] INFO - #com.github.copilot.chat.input.ModelPickPanel - Chat default model from CAPI: gpt-4.12025-12-04 09:21:10,336 [ 19600] INFO - #com.github.copilot.chat.input.ModelPickPanel - Selected chat default model from CAPI: GPT-4.12025-12-04 09:21:10,336 [ 19600] INFO - #com.github.copilot.chat.input.ModelPickPanel - Loading selected model for scope: chat-panel (original scope: chat-panel)2025-12-04 09:21:10,336 [ 19600] INFO - #com.github.copilot.chat.input.ModelPickPanel - Chat default model from CAPI: gpt-4.12025-12-04 09:21:10,336 [ 19600] INFO - #com.github.copilot.chat.input.ModelPickPanel - Selected chat default model from CAPI: GPT-4.12025-12-04 09:21:10,405 [ 19669] INFO - #com.github.copilot.chat.input.ModelPickPanel - Loading selected model for scope: chat-panel (original scope: chat-panel)2025-12-04 09:21:10,405 [ 19669] INFO - #com.github.copilot.chat.input.ModelPickPanel - Chat default model from CAPI: gpt-4.12025-12-04 09:21:10,405 [ 19669] INFO - #com.github.copilot.chat.input.ModelPickPanel - Selected chat default model from CAPI: GPT-4.12025-12-04 09:21:10,405 [ 19669] INFO - #com.github.copilot.chat.input.ModelPickPanel - Loading selected model for scope: chat-panel (original scope: chat-panel)2025-12-04 09:21:10,405 [ 19669] INFO - #com.github.copilot.chat.input.ModelPickPanel - Chat default model from CAPI: gpt-4.12025-12-04 09:21:10,405 [ 19669] INFO - #com.github.copilot.chat.input.ModelPickPanel - Selected chat default model from CAPI: GPT-4.12025-12-04 09:21:10,410 [ 19674] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - DragAndDropCoordinator created for project: alfalaval_aps, UI kind: EDITS2025-12-04 09:21:10,443 [ 19707] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - DragAndDropCoordinator created for project: alfalaval_aps, UI kind: AGENT2025-12-04 09:21:10,444 [ 19708] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - Adding drag and drop coordination to component: CopilotAgentSessionComponent2025-12-04 09:21:10,444 [ 19708] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - DragAndDropCoordinator created for project: alfalaval_aps, UI kind: AGENT2025-12-04 09:21:10,444 [ 19708] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - Adding drag and drop coordination to component: CopilotAgentSessionComponent2025-12-04 09:21:10,444 [ 19708] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - Traditional DnD support registered for CopilotAgentSessionComponent2025-12-04 09:21:10,444 [ 19708] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - Traditional DnD support registered for CopilotAgentSessionComponent2025-12-04 09:21:10,447 [ 19711] INFO - #com.github.copilot.context.listeners.DockContainerHandler$Companion - DockContainer registered for component: CopilotAgentSessionComponent2025-12-04 09:21:10,447 [ 19711] INFO - #com.github.copilot.context.listeners.DockContainerHandler$Companion - DockContainer registered for component: CopilotAgentSessionComponent2025-12-04 09:21:10,447 [ 19711] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - DockContainer support registered for CopilotAgentSessionComponent2025-12-04 09:21:10,447 [ 19711] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - DockContainer support registered for CopilotAgentSessionComponent2025-12-04 09:21:10,447 [ 19711] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - Drag and drop coordination setup completed for CopilotAgentSessionComponent2025-12-04 09:21:10,447 [ 19711] INFO - #com.github.copilot.context.listeners.DragAndDropCoordinator$Companion - Drag and drop coordination setup completed for CopilotAgentSessionComponent2025-12-04 09:21:10,722 [ 19986] INFO - #com.github.copilot.chat.conversation.agent.tool.ToolRegistryImpl - Registered tool: run_in_terminal2025-12-04 09:21:10,723 [ 19987] INFO - #com.github.copilot.chat.conversation.agent.tool.ToolRegistryImpl - Registered tool: get_terminal_output2025-12-04 09:21:10,725 [ 19989] INFO - #com.github.copilot.chat.conversation.agent.tool.ToolRegistryImpl - Registered tool: insert_edit_into_file2025-12-04 09:21:10,727 [ 19991] INFO - #com.github.copilot.chat.conversation.agent.tool.ToolRegistryImpl - Registered tool: create_file2025-12-04 09:21:10,727 [ 19991] INFO - #com.github.copilot.chat.conversation.agent.tool.ToolRegistryImpl - Registered tool: get_errors2025-12-04 09:21:10,727 [ 19991] INFO - #com.github.copilot.chat.conversation.agent.tool.ToolRegistryImpl - Registered tool: show_content2025-12-04 09:21:10,727 [ 19991] INFO - #com.github.copilot.chat.conversation.agent.tool.ToolRegistryImpl - Registered tool: open_file2025-12-04 09:21:10,810 [ 20074] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stderr]: Be careful, logger will be shut down earlier than application: Unable to make field private static java.util.IdentityHashMap java.lang.ApplicationShutdownHooks.hooks accessible: module java.base does not "opens java.lang" to unnamed module @2f4d37092025-12-04 09:21:10,843 [ 20107] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stdout]: Build process started. Classpath: C:/Program Files/JetBrains/IntelliJ IDEA 2025.3/plugins/java/lib/jps-launcher.jar2025-12-04 09:21:11,956 [ 21220] INFO - #c.i.c.b.CompilerReferenceServiceBase - backward reference index reader is closed (didn't exist)2025-12-04 09:21:13,457 [ 22721] INFO - #c.i.c.b.IsUpToDateCheckStartupActivity - isUpToDate = false2025-12-04 09:21:13,757 [ 23021] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stderr]: Be careful, logger will be shut down earlier than application: Unable to make field private static java.util.IdentityHashMap java.lang.ApplicationShutdownHooks.hooks accessible: module java.base does not "opens java.lang" to unnamed module @2f4d37092025-12-04 09:21:13,787 [ 23051] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stdout]: Build process started. Classpath: C:/Program Files/JetBrains/IntelliJ IDEA 2025.3/plugins/java/lib/jps-launcher.jar2025-12-04 09:21:22,286 [ 31550] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files2025-12-04 09:21:22,302 [ 31566] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files2025-12-04 09:21:22,322 [ 31586] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=alfalaval_aps, containerState=COMPONENT_CREATED, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)CopilotDiffPersistence took 11 ms2025-12-04 09:21:22,402 [ 31666] INFO - #c.i.c.ComponentStoreImpl - Saving appEncoding took 21 ms2025-12-04 09:21:25,218 [ 34482] INFO - #c.i.c.s.BuildManager - Using preloaded build process to compile C:/progetti/develop/luve/plair/alfalaval_aps2025-12-04 09:21:25,218 [ 34482] INFO - #c.i.c.b.CompilerReferenceServiceBase - backward reference index reader is closed (didn't exist)2025-12-04 09:21:26,288 [ 35552] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stderr]: Be careful, logger will be shut down earlier than application: Unable to make field private static java.util.IdentityHashMap java.lang.ApplicationShutdownHooks.hooks accessible: module java.base does not "opens java.lang" to unnamed module @2f4d37092025-12-04 09:21:26,304 [ 35568] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stdout]: Build process started. Classpath: C:/Program Files/JetBrains/IntelliJ IDEA 2025.3/plugins/java/lib/jps-launcher.jar2025-12-04 09:21:38,450 [ 47714] INFO - #c.j.r.p.c.CodeWithMeCleanup - running activity to cleanup old thin clients... Root path is 'C:\Users\carlo.marchiori\AppData\Local\JetBrains'. JvmStartTimeMs=17648364502592025-12-04 09:21:38,450 [ 47714] INFO - #c.j.r.p.c.CodeWithMeCleanup - found 0 Code With Me client system folders to check2025-12-04 09:21:38,450 [ 47714] INFO - #c.j.r.p.c.CodeWithMeCleanup - found 0 Code With Me client config folders to check2025-12-04 09:21:38,450 [ 47714] INFO - #c.j.r.p.c.CodeWithMeCleanup - keep only [] major versions2025-12-04 09:21:38,450 [ 47714] INFO - #c.j.r.p.c.CodeWithMeCleanup - Starting the logs folder cleanup. Path: C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3\log2025-12-04 09:21:38,450 [ 47714] INFO - #c.i.r.OsRegistryConfigProvider - Looking for 'versionManagementEnabled' value in [HKLM_64\SOFTWARE\JetBrains\JetBrainsClient\versionManagementEnabled, HKLM_32\SOFTWARE\JetBrains\JetBrainsClient\versionManagementEnabled, HKCU_64\SOFTWARE\JetBrains\JetBrainsClient\versionManagementEnabled, HKCU_32\SOFTWARE\JetBrains\JetBrainsClient\versionManagementEnabled]2025-12-04 09:21:38,450 [ 47714] INFO - #c.i.r.OsRegistryConfigProvider - OS provided value for 'versionManagementEnabled' is not found2025-12-04 09:21:49,838 [ 59102] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 0 finished gracefully2025-12-04 09:21:49,838 [ 59102] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 2 finished gracefully2025-12-04 09:21:49,838 [ 59102] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 1 finished gracefully2025-12-04 09:21:49,838 [ 59102] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 6 finished gracefully2025-12-04 09:21:49,868 [ 59132] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 3 finished gracefully2025-12-04 09:21:49,896 [ 59160] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 9 finished gracefully2025-12-04 09:21:49,913 [ 59177] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 5 finished gracefully2025-12-04 09:21:49,937 [ 59201] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 4 finished gracefully2025-12-04 09:21:49,939 [ 59203] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 7 finished gracefully2025-12-04 09:21:49,964 [ 59228] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 10 finished gracefully2025-12-04 09:21:49,966 [ 59230] INFO - #c.i.u.i.c.IndexUpdateRunner - Coroutine 8 finished gracefully2025-12-04 09:21:50,130 [ 59394] INFO - #c.i.u.i.ProjectChangedFilesScanner - Retrieving changed during indexing files of alfalaval_aps : 0 to update, calculated in 1ms2025-12-04 09:21:50,130 [ 59394] INFO - #c.i.u.i.UnindexedFilesIndexer - Finished for alfalaval_aps. Unindexed files update took 40039ms; general responsiveness: 1/40 sluggish; EDT responsiveness: ok2025-12-04 09:21:50,130 [ 59394] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) UnindexedFilesIndexer[alfalaval_aps, reasons: [DbSrc:// data sources changed dialects]]2025-12-04 09:21:50,140 [ 59404] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [alfalaval_aps]2025-12-04 09:21:50,493 [ 59757] INFO - #com.github.copilot.chat.conversation.agent.workspace.WorkspaceFileWatcher - Watching 2600 files in workspace: file:///C:/progetti/develop/luve/plair/alfalaval_aps, returning 2600 files immediately2025-12-04 09:21:58,302 [ 67566] INFO - #c.i.u.g.s.GistStorageImpl - Cleaning old huge-gists dirs from [C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3\caches\huge-gists] ...2025-12-04 09:21:58,304 [ 67568] INFO - #c.i.u.g.s.GistStorageImpl - Cleaning old huge-gists dirs finished2025-12-04 09:21:59,920 [ 69184] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files2025-12-04 09:21:59,927 [ 69191] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files2025-12-04 09:22:14,702 [ 83966] INFO - #c.i.o.p.DumbServiceImpl - enter dumb mode [alfalaval_aps]2025-12-04 09:22:14,739 [ 84003] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.openapi.roots.impl.PushedFilePropertiesUpdaterImpl$MyDumbModeTask@139e5582 (reason: Push on VFS changes)2025-12-04 09:22:14,765 [ 84029] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.openapi.roots.impl.PushedFilePropertiesUpdaterImpl$MyDumbModeTask@139e5582 (reason: Push on VFS changes)2025-12-04 09:22:14,784 [ 84048] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [alfalaval_aps]2025-12-04 09:22:19,023 [ 88287] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files2025-12-04 09:22:19,027 [ 88291] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files2025-12-04 09:22:34,956 [ 104220] INFO - #c.i.c.ComponentStoreImpl - Registering unknown macros a.b.c in component DatabaseSettings2025-12-04 09:22:34,988 [ 104252] INFO - #c.i.e.r.RemoteProcessSupport - Starring remote process. Existing info not found, creating PendingInfo:<VirtualFile: Persistence Unit 'plairEntityManager',Unknown: ApsApp>2025-12-04 09:22:35,077 [ 104341] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,079 [ 104343] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,080 [ 104344] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,085 [ 104349] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,085 [ 104349] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,088 [ 104352] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,094 [ 104358] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,095 [ 104359] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,096 [ 104360] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,098 [ 104362] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,099 [ 104363] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,100 [ 104364] INFO - #c.i.d.d.a.DatabaseArtifactList - skipping constraint2025-12-04 09:22:35,237 [ 104501] INFO - #c.i.e.r.RemoteProcessSupport - Remote process system:"C:\Program Files\Eclipse Adoptium\jdk-17.0.4.1+1\bin\java.exe" -Dspring.devtools.restart.enabled=false -DDspring.profiles.active=local,local-test,api-docs,swagger -Dspring.profiles.active=local,local-test -javaagent:c:\programmi\glowroot\glowroot.jar -Dglowroot.agent.id=plair -Djava.rmi.server.hostname=127.0.0.1 -Dcom.jetbrains.jpa.root=C:\Users\carlo.marchiori\AppData\Local\JetBrains\IntelliJIdea2025.3\compiler\alfalaval_aps.665bee5e\.generated\Jpa_Console\aps-PU-1764836555074 -Dfile.encoding=UTF-8 @C:\Users\carlo.marchiori\AppData\Local\Temp\idea_arg_file1393658157 com.intellij.jpa.console.RemoteJpaServer2025-12-04 09:22:35,237 [ 104501] INFO - #c.i.e.r.RemoteProcessSupport - Staring remote process, startNotified received, creating PendingInfo: <VirtualFile: Persistence Unit 'plairEntityManager',Unknown: ApsApp>2025-12-04 09:22:51,449 [ 120713] WARN - #c.i.e.r.RemoteProcessSupport - Remote process stderr:OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended2025-12-04 09:22:51,449 [ 120713] WARN - #c.i.e.r.RemoteProcessSupport - OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended2025-12-04 09:22:51,623 [ 120887] WARN - #c.i.e.r.RemoteProcessSupport - Remote process stderr:OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended2025-12-04 09:22:51,623 [ 120887] WARN - #c.i.e.r.RemoteProcessSupport - OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended2025-12-04 09:22:53,244 [ 122508] WARN - #c.i.e.r.RemoteProcessSupport - Remote process stderr:OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended2025-12-04 09:22:53,244 [ 122508] WARN - #c.i.e.r.RemoteProcessSupport - OpenJDK 64-Bit Server VM warning: Sharing is only supported for boot loader classes because bootstrap classpath has been appended2025-12-04 09:22:55,136 [ 124400] INFO - #c.i.e.r.RemoteProcessSupport - Started remote process on: 127.0.0.1:7180with service port 52806 and id = JpaFacadeImpl9f4f21c92025-12-04 09:23:02,258 [ 131522] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files2025-12-04 09:23:02,265 [ 131529] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files2025-12-04 09:23:02,299 [ 131563] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=alfalaval_aps, containerState=COMPONENT_CREATED, componentStore=C:\progetti\develop\luve\plair\alfalaval_aps)RunManager took 14 ms2025-12-04 09:23:51,821 [ 181085] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration options: {groupDataThreshold=10000, dataThreshold=15000, groupAlertThreshold=6000}2025-12-04 09:23:51,821 [ 181085] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration metadata product url: https://resources.jetbrains.com/storage/ap/fus/metadata/tiger/FUS/groups/253/IU.json2025-12-04 09:23:51,932 [ 181196] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration metadata product url: https://resources.jetbrains.com/storage/ap/fus/metadata/tiger/FUS/groups/253/IU.json2025-12-04 09:23:52,328 [ 181592] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration dictionary service url: https://resources.jetbrains.com/storage/ap/fus/metadata/dictionaries/2025-12-04 09:23:53,419 [ 182683] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration options: {groupDataThreshold=10000, dataThreshold=15000, groupAlertThreshold=6000}2025-12-04 09:23:53,419 [ 182683] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration metadata product url: https://resources.jetbrains.com/storage/ap/fus/metadata/tiger/MP/groups/253/IU.json2025-12-04 09:23:53,584 [ 182848] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration metadata product url: https://resources.jetbrains.com/storage/ap/fus/metadata/tiger/MP/groups/253/IU.json2025-12-04 09:23:53,680 [ 182944] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration dictionary service url: https://resources.jetbrains.com/storage/ap/fus/metadata/dictionaries/2025-12-04 09:23:53,966 [ 183230] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration options: {groupDataThreshold=10000, dataThreshold=15000, groupAlertThreshold=6000, basic_logs=analyzed_triggered_filters,cache_extension_length,cache_hit_length,cloud_filter_model_probability,cloud_filter_model_response_type,completion_client,context_assemble_time,editor_type,experiment_group,file_language,fim_cache_hit,fim_cache_line_difference,fim_context_size,final_proposal_length,final_proposal_line,finish_type,first_proposal_len_generated,full_inference_time,full_insert_actions,generated_proposals,generation_id,incompatible_ux_mode,inline_api_provider,invalidation_event,lines_count,local_filter_model_pass,local_filter_model_response,local_filter_model_score,local_filter_model_time,next_line_actions,next_word_actions,proposal_id,proposal_length,proposal_next_line_similarity,proposal_prev_line_similarity,rag_context_computation_time,rag_context_size,rag_suggestion_similarity,raw_triggered_filters,received_proposal_length,received_proposal_lines,recent_context_computation_time,recent_context_number_of_chunks,recent_context_size,request_id,result_proposals,semantic_state,showing_time,silent_completion,time_to_start_showing,total_inserted_length,total_inserted_lines,used_generation_id,was_shown, local_logs_share=1, cloud_logs_share=1}2025-12-04 09:23:53,966 [ 183230] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration metadata product url: https://resources.jetbrains.com/storage/ap/fus/metadata/tiger/ML/groups/253/IU.json2025-12-04 09:23:54,094 [ 183358] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration metadata product url: https://resources.jetbrains.com/storage/ap/fus/metadata/tiger/ML/groups/253/IU.json2025-12-04 09:23:54,379 [ 183643] INFO - #c.i.i.s.e.c.EventLogStatisticsService - Statistics. Configuration dictionary service url: https://resources.jetbrains.com/storage/ap/fus/metadata/dictionaries/2025-12-04 09:24:02,291 [ 191555] INFO - #c.i.c.s.BuildManager - Using preloaded build process to compile C:/progetti/develop/luve/plair/alfalaval_aps2025-12-04 09:24:02,293 [ 191557] INFO - #c.i.c.b.CompilerReferenceServiceBase - backward reference index reader is closed (didn't exist)2025-12-04 09:24:03,002 [ 192266] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stderr]: Be careful, logger will be shut down earlier than application: Unable to make field private static java.util.IdentityHashMap java.lang.ApplicationShutdownHooks.hooks accessible: module java.base does not "opens java.lang" to unnamed module @2f4d37092025-12-04 09:24:03,010 [ 192274] INFO - #c.i.c.s.BuildManager - BUILDER_PROCESS [stdout]: Build process started. Classpath: C:/Program Files/JetBrains/IntelliJ IDEA 2025.3/plugins/java/lib/jps-launcher.jarI have managed to get things running setting -Dhibernate.dialect=org.hibernate.dialect.SQLServer2012Dialect as VM option in the Run/Debug configuration of my application and encrypt=false in the datasource connection string (the datasource connected to the persistence unit in the persistence view).
now the query is performed but I have problems due to the fact that in my application I have 2 persistence units, each with it's own package. Yet, the persistence units inferred by the Persistence View contain wrongly both packages in each persistence unit.
[2025-12-04 11:02:32] org.hibernate.DuplicateMappingException: The [it.alfalaval.aps.plair.domain.Region] and [it.alfalaval.aps.products.domain.Region] entities share the same JPA entity name: [Region] which is not allowed!
Hi carlo.marchiori
Thank you for letting me know that the Hibernate dialect issue is now resolved and for sharing the solution you used. About the Mapping exception, there's a process to add the mapping to each PU. Could you please review the example shown in IDEA-367987: Configure PUs manually (a video is also available)?
If the previous option doesn't help, could you try adding the mapping files to hibernate.cfg.xml, as in IDEA-81847?
Please let me know if any of these options resolve the problem or if you see a change in the behaviour.