-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error changing the file stream for HDF5 error function H5E.print #149
Comments
Have you tried to create/open the file with a |
@SBahre you can call H5E.walk instead of H5E.print.
log file: |
Hi @SBahre, Both solutions from @gheber and @jhy871167495 seem to be a viable paths. |
When a HDF5 function fails it generates the error and itself prints the error in console in an console application. In another case, you can mute the automatic error printing from the stack using H5E.set_auto() and then print the message explicitly using H5E.print. Full documentation available here.
For C#, this syntax is
I want to redirect this error message from console to a .txt file. I am getting AccessViolation exception when I am using
How to get rid of this exception? Am I going correct?
I am using HDF.PInvoke version 1.10.0.4 in C# in Visual Studio 2015.
The text was updated successfully, but these errors were encountered: