Files
brave-core/chromium_src/base/logging
Claudio DeSouza 4bd80af36c [cr136] Fix print_rust_log to log with overriden func
This change change the versbose path to use the overriden function for
the logging implementation, as the implementation could change
regardless.

Chromium change:
https://chromium.googlesource.com/chromium/src/+/f0fd42efd9fdb4f04acc6e4d0699a34700b41cbc

commit f0fd42efd9fdb4f04acc6e4d0699a34700b41cbc
Author: Collin Baker <collinbaker@chromium.org>
Date:   Fri Mar 21 09:47:39 2025 -0700

    Format Rust log message body without intermediate allocation

    The Rust log adapter can avoid a heap allocation for each log record:
    instead of turning the provided std::fmt::Arguments into a CString,
    the former can be passed oqauely to C++ code. Then, the C++ side can
    call back with the formatter and an interface to the LogMessage

    The allocation for the filename can be removed once
    crrev.com/c/5765705 is in.

    Bug: 371112531
2025-04-16 09:30:29 +01:00
..