Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit 0b5f0dd

Browse files
rfrankeOpenModelica-Hudson
authored andcommitted
Fix log category of linear solver
1 parent be0ab4e commit 0b5f0dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SimulationRuntime/cpp/Solver/LinearSolver/LinearSolver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ void LinearSolver::initialize()
165165
_iterationStatus = SOLVERERROR;
166166
}
167167
}
168-
LOGGER_WRITE("LinearSolver: initialized",LC_NLS,LL_DEBUG);
168+
LOGGER_WRITE("LinearSolver: initialized", LC_LS, LL_DEBUG);
169169
}
170170

171171
void LinearSolver::solve()
@@ -237,7 +237,7 @@ void LinearSolver::solve()
237237
{
238238
dgetc2_(&_dimSys, _A, &_dimSys, _ihelpArray, _jhelpArray, &irtrn);
239239
dgesc2_(&_dimSys, _A, &_dimSys, _b, _ihelpArray, _jhelpArray, _scale);
240-
LOGGER_WRITE("LinearSolver: Linear system singular, using perturbed system matrix.", LC_NLS, LL_DEBUG);
240+
LOGGER_WRITE("LinearSolver: Linear system singular, using perturbed system matrix.", LC_LS, LL_DEBUG);
241241
_iterationStatus = DONE;
242242
}
243243
else

0 commit comments

Comments
 (0)