mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 10:55:46 -05:00
[libcalamares] Don't log useless FUNC_INFO for Python
- When a Python module calls utils.debug(), there's no point in logging the C++ funcinfo that passes the parameters on; don't use cDebug() with its attendant magic.
This commit is contained in:
parent
f818d4b446
commit
b0abb99ee1
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ check_target_env_output( const bp::list& args, const std::string& stdin, int tim
|
|||
void
|
||||
debug( const std::string& s )
|
||||
{
|
||||
cDebug() << "[PYTHON JOB]: " << QString::fromStdString( s );
|
||||
Logger::CDebug( Logger::LOGDEBUG ) << "[PYTHON JOB]: " << QString::fromStdString( s );
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Reference in a new issue