You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When attempting to run the application, it throws multiple warnings and errors related to unrecognized format specifiers in the log and a HeadlessException because no X11 DISPLAY variable is set.
Install dependencies and attempt to run the application.
The error occurs immediately upon execution.
Expected behavior
The application should launch and display the main window without throwing errors.
Screenshots
N/A (No graphical interface appears due to the HeadlessException).
Desktop (please complete the following information):
OS: Ubuntu 22.04 LTS
Java version: 21.0.4
Additional context
Here is the full error log:
WARNING: sun.reflect.Reflection.getCallerClass is not supported. This will impact performance.
ERROR StatusLogger Unrecognized format specifier [d]
ERROR StatusLogger Unrecognized conversion specifier [d] starting at position 16 in conversion pattern.
ERROR StatusLogger Unrecognized format specifier [thread]
ERROR StatusLogger Unrecognized conversion specifier [thread] starting at position 25 in conversion pattern.
ERROR StatusLogger Unrecognized format specifier [level]
ERROR StatusLogger Unrecognized conversion specifier [level] starting at position 35 in conversion pattern.
ERROR StatusLogger Unrecognized format specifier [logger]
ERROR StatusLogger Unrecognized conversion specifier [logger] starting at position 47 in conversion pattern.
ERROR StatusLogger Unrecognized format specifier [msg]
ERROR StatusLogger Unrecognized conversion specifier [msg] starting at position 54 in conversion pattern.
ERROR StatusLogger Unrecognized format specifier [n]
ERROR StatusLogger Unrecognized conversion specifier [n] starting at position 56 in conversion pattern.
Exception in thread "main" java.awt.HeadlessException:
No X11 DISPLAY variable was set,
or no headful library support was found,
but this program performed an operation which requires it,
at java.desktop/java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:164)
at java.desktop/java.awt.Window.<init>(Window.java:553)
at java.desktop/java.awt.Frame.<init>(Frame.java:428)
at java.desktop/javax.swing.JFrame.<init>(JFrame.java:224)
at tauon.app.ui.containers.main.AppWindow.<init>(AppWindow.java:67)
at tauon.app.App.main(App.java:102)
Java version:
openjdk version "21.0.4" 2024-07-16
OpenJDK Runtime Environment (build 21.0.4+7-Ubuntu-1ubuntu224.04)
OpenJDK 64-Bit Server VM (build 21.0.4+7-Ubuntu-1ubuntu224.04, mixed mode, sharing)
It seems that the application requires a graphical environment (X11) but is being run in a headless environment. Additionally, the logging configuration might have some incorrect format specifiers.
The text was updated successfully, but these errors were encountered:
Describe the bug
When attempting to run the application, it throws multiple warnings and errors related to unrecognized format specifiers in the log and a
HeadlessException
because no X11DISPLAY
variable is set.To Reproduce
Steps to reproduce the behavior:
Expected behavior
The application should launch and display the main window without throwing errors.
Screenshots
N/A (No graphical interface appears due to the
HeadlessException
).Desktop (please complete the following information):
Additional context
Here is the full error log:
Java version:
It seems that the application requires a graphical environment (X11) but is being run in a headless environment. Additionally, the logging configuration might have some incorrect format specifiers.
The text was updated successfully, but these errors were encountered: