Kaydet (Commit) c5543438 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Use SAL_INFO instead of fprintf(stderr)

Change-Id: I49bc06865c599e0a4417e24c70845a2bc25b7ff8
üst 249d1b57
......@@ -478,7 +478,7 @@ public:
{
const char *pValue = getenv("FORMULA_GROUP_DUMMY");
meMode = static_cast<Mode>(OString(pValue, strlen(pValue)).toInt32());
fprintf(stderr, "Using Dummy Formula Group interpreter mode %d\n", (int)meMode);
SAL_INFO("sc.formulagroup", "Using Dummy Formula Group interpreter mode " << (int)meMode);
}
virtual ScMatrixRef inverseMatrix(const ScMatrix& /*rMat*/)
......@@ -527,7 +527,7 @@ FormulaGroupInterpreter *FormulaGroupInterpreter::getStatic()
if ( !msInstance ) // software fallback
{
fprintf(stderr, "Create S/W interp\n");
SAL_INFO("sc.formulagroup", "Create S/W interpreter");
msInstance = new sc::FormulaGroupInterpreterSoftware();
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment