Coder Social home page Coder Social logo

Comments (2)

dtolnay avatar dtolnay commented on July 23, 2024 1

However we also manually reimplement our panic handler to give a custom backtrace, and this would be disabled by RUST_LIB_BACKTRACE=0

I believe the intended way to handle this is that the custom panic handler needs to use Backtrace::force_capture() (https://doc.rust-lang.org/1.75.0/std/backtrace/struct.Backtrace.html#method.force_capture). Then it is no longer sensitive to RUST_BACKTRACE and RUST_LIB_BACKTRACE, so you can use RUST_LIB_BACKTRACE=0 to only control non-panic error handling backtraces.

In the backtrace crate, Backtrace::new() is equivalent to std::backtrace::Backtrace::force_capture() so you effectively arrived at this already as of shotover/shotover-proxy#1408.

from anyhow.

rukai avatar rukai commented on July 23, 2024

I realized that for my use case, I actually use https://crates.io/crates/backtrace instead of std::backtrace.
The backtrace crate doesnt actually check RUST_LIB_BACKTRACE, so I can simply add:

        if std::env::var("RUST_LIB_BACKTRACE").is_err() {
            std::env::set_var("RUST_LIB_BACKTRACE", "0");
        }

To disable anyhows backtraces when RUST_BACKTRACE=1.
This does still allow the user to manually force RUST_LIB_BACKTRACE=1 if they need to.

I'll leave this issue open as it does represent a possible user issue, it is not however an issue that I actually face, so feel free to close this issue.

from anyhow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.