To view the Java console, right click on the Java icon in the system tray (assuming you're using Windows) and choose "Open console" - as pictured at the bottom of this page

Answer from George3 on Stack Exchange
🌐
Oracle
docs.oracle.com › javase › 8 › docs › technotes › guides › deploy › console_trace_log.html
22 Java Console, Tracing, and Logging
April 21, 2026 - This topic describes the Java Console, a debugging aid that redirects any System.out and System.err to the console window. The console is available for applets running with Java Plug-in and applications running with Java Web Start.
🌐
Oracle
java.com › en › download › help › javaconsole.html
How do I enable and view the Java Console?
Select Show Console and click OK. NOTE: These instructions apply if you've chosen to place the Java icon in the system tray through the Java Control Panel (Advanced tab)
🌐
Rollbar
rollbar.com › home › where are java errors logged?
Where are Java Errors Logged? | Rollbar
June 11, 2021 - At the most basic level, Java errors are logged on the console. Developers typically call System.out.println() to print log messages on the console. Whenever the console is closed, these messages are lost as they cannot be stored in any permanent location.
🌐
Customer Support
support.quotemedia.com › support › solutions › articles › 13000005197-enabling-and-capturing-java-logs-windows-
Enabling and Capturing Java Logs (Windows) : Customer Support
February 7, 2017 - This will open up the Java Control Panel. 2. In the Java Control panel, select the 'Advanced' tab and ensure that under Debugging 'Enable tracing,' and 'Enable logging,' are selected, as well as 'Show console...
🌐
BCCNsoft
doc.bccnsoft.com › docs › jdk7-docs › technotes › guides › deployment › deployment-guide › tracing_logging.html
Tracing and Logging
Tracing and Logging includes the following topics: ... Tracing is a facility to redirect any output in the Java Console to a trace file.
🌐
Stack Overflow
stackoverflow.com › questions › 55661250 › how-to-see-running-java-program-console-logs-in-linux
How to see running java program console logs in Linux - Stack Overflow
Viewed 5k times · 2 · I am running a java program in a server, I have System.out.println() statements for current status and I also have LOGGER statements for debugging purpose in that program, I used java -cp "myjar.jar" pack.Test command to run my class. It is running successfully and I am able to see console logs, unfortunately I got disconnected from server due to network issue, again I connected , when I check the process using ps aux| grep myjar it is still running but I am not getting console logs.
Find elsewhere
🌐
Jalview
jalview.org › help › html › logging.html
The Java Console, Logging and Reporting Bugs
Jalview Executable Jar Launch Logs ... will output logging information to STDOUT and STDERR. ... The Java Console is opened by selecting Tools → Show Java Console....
🌐
Loggly
loggly.com › home › java logging basics
Java Logging Basics - The Ultimate Guide To Logging - Loggly
June 27, 2025 - Choosing which Appender to use depends on your logging requirements. For example, if you're developing an application and want to quickly debug an issue, a ConsoleAppender is one of the easiest ways to view your logs in real-time.
🌐
Five9 Community
community.five9.com › s › article › VCC-Getting-Java-Console-Logs
VCC | How to collect Java Console Logs - Community - Five9
This article will guide you on how to get Java logs for Five9 Java based applications that can be helpful when investigating Five9 Java based applications.
🌐
SAP Help Portal
wiki.scn.sap.com › wiki › display › SCM › EIS+-+How+To+Access+the+Java+Console+Log
SAP EIS – Enterprise Inventory and Service Level Optimization Overview | SAP Help Portal
April 10, 2014 - SAP EIS product information has been centralized in the respective product Help pages · This Support Content page will be removed in September 2026. Customers that had this link saved are asked to save new bookmarks based on the following Help pages:
Top answer
1 of 4
141

The Log class:

API for sending log output.

Generally, use the Log.v() Log.d() Log.i() Log.w() and Log.e() methods.

The order in terms of verbosity, from least to most is ERROR, WARN, INFO, DEBUG, VERBOSE. Verbose should never be compiled into an application except during development. Debug logs are compiled in but stripped at runtime. Error, warning and info logs are always kept.

Outside of Android, System.out.println(String msg) is used.

2 of 4
25

Use the Android logging utility.

http://developer.android.com/reference/android/util/Log.html

Log has a bunch of static methods for accessing the different log levels. The common thread is that they always accept at least a tag and a log message.

Tags are a way of filtering output in your log messages. You can use them to wade through the thousands of log messages you'll see and find the ones you're specifically looking for.

You use the Log functions in Android by accessing the Log.x objects (where the x method is the log level). For example:

CopyLog.d("MyTagGoesHere", "This is my log message at the debug level here");
Log.e("MyTagGoesHere", "This is my log message at the error level here");

I usually make it a point to make the tag my class name so I know where the log message was generated too. Saves a lot of time later on in the game.

You can see your log messages using the logcat tool for android:

Copyadb logcat

Or by opening the eclipse Logcat view by going to the menu bar

CopyWindow->Show View->Other then select the Android menu and the LogCat view
🌐
Stack Overflow
stackoverflow.com › questions › 30908171 › how-to-check-java-console-logs-after-it-is-closed
safari - how to check java console logs after it is closed - Stack Overflow
June 18, 2015 - This way the console outputs are saved in a file here: <User Application Data Folder>\Sun\Java\Deployment\log · More info here: http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/jcp/tracing_logging.html ... If you're holding on to a playground spinning wheel and then let go, is your trajectory straight or curved?
🌐
State
scc.its.state.nc.us › hod › en › doc › troubleshoot › javaconsole.html
Displaying the Java Console
Scroll down to the Microsoft VM ... Explorer as well as any other open instances of the browser and restart it. Select View > Java Console from Internet Explorer's main menu to view the Java Console....
🌐
Customer Support
support.quotemedia.com › support › solutions › articles › 13000027118-enabling-and-capturing-java-logs-mac-os-x-
Enabling and Capturing Java Logs (Mac OS X) : Customer Support
February 7, 2017 - 2. In the Java Control panel, select the 'Advanced' tab and ensure that under Debugging 'Enable tracing,' and 'Enable logging,' are selected, as well as 'Show console' under Java Console.
🌐
IBM
ibm.com › support › pages › enable-java-console-logging
Enable Java Console logging
After log in, if you do not have the right authorization for this document, there will be instructions on what to do next.
🌐
JetBrains
intellij-support.jetbrains.com › hc › en-us › articles › 207241125-Collecting-Java-debugger-logs
Collecting Java debugger logs – IDEs Support (IntelliJ Platform) | JetBrains
To get the raw logs from the Java debugger please perform the following steps: Add -Didea.debugger.trace=ALL into the .vmoptions file using the Help | Edit Custom VM Options menu. Start IntelliJ IDEA from the command line (Terminal) so that console output can be observed.