Skip to content

Commit

Permalink
Emit Info message instead of error (resolves #144)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidscn committed Sep 18, 2022
1 parent 8b3e621 commit 1b0973e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mesh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ void readMesh(Mesh &mesh, const std::string &filename, const int dim, const bool
}
}
} else {
ASTE_ERROR << "Connectivity information for " << mesh.fname << " skipped since connectivity is not required.\n";
ASTE_INFO << "Connectivity information for mesh \"" << mesh.fname << "\" skipped since connectivity is not required.\n";
}
};

Expand Down

0 comments on commit 1b0973e

Please sign in to comment.