Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6153701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:08:11+00:00 2026-05-23T20:08:11+00:00

Is it possible to get variable values included in a stack trace? I have

  • 0

Is it possible to get variable values included in a stack trace? I have just started using bugsense which emails the stacktrace to me and I wonder if there is some way in my code to put the variable values into the stacktrace output

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T20:08:11+00:00Added an answer on May 23, 2026 at 8:08 pm

    Not by default, you have to do it by yourself:

    The stack trace will only tell you about the involved line of code (where the Exception is thrown) and the execution stack.

    But nothing prevents you from catching the Exception and to include some debug information in the message:

    try {
       ...the code...
    }
    catch (Throwable t) {
       // Here, we catch any Throwable (Exception but also Error such as OutOfMemory 
       // or NoClassDefFound), which is *absolutely not suitable* for 
       // anything else than debugging.
       // You can (should, actually) make this catch statement more specific 
       // depending of the Exception or Error you are facing
    
       // Dump your variables here:
       final String message = "myVar=" + myVar; 
    
       // The statement below rethrows the original Throwable and adds your
       // own message to it
       throw new RuntimeException(message, t); 
    }
    

    Or to put a breakpoint in the catch { } statement to inspect the state of your application at that stage, but as I understood it may not be applicable in the case you are describing.

    (By the way, I suggest you add the tag “Java” to your question. This way it will also be visible by the Java community of StackOverflow)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

With the code below is possible to get separate values, using the variable data
Using Java Reflection, is it possible to get the name of a local variable?
Is it possible to get the value of unused variable using GDB? Is there
Is it possible to get the value from a JavaScript variable and use this
Is it possible to get typename of a member variable? For example: struct C
Is it possible to get the memory address of a variable in C#. What
Is it possible to get the parameter name (where I have parmName below)? Or
I have a bunch a values I would like to add together which are
I have variable 'cno' and it's values sometimes have 123# - ( end with
I have the following class. Note there are some key values which are not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.