You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.
It was not obvious to me at first instinct that this key error was due to the analysis failure earlier. I had to go through some extensive debugging steps locally to find this out.
It would be good if the error and warning logging can be consistent with using logger.
The text was updated successfully, but these errors were encountered:
Currently errors and warnings are recorded in different ways:
(1) using logger
(2) warnings.warn
(3) print statements
Print statements would not go into the
log.txt
file generated by FAB, therefore resulting in losing error or warning information for debugging. An example of this is: https://github.com/hiker/fab_new/blob/282f068420577e9b6065fd086cc879124c1d86ba/source/fab/steps/analyse.py#L268C9-L268C15 I once had this error because of not having clang available for c file analysis. However, this error did not get into thelog.txt
file. The reported error in thelog.txt
file is key error of lookup infab/source/fab/mo.py
Line 37 in 282f068
It was not obvious to me at first instinct that this key error was due to the analysis failure earlier. I had to go through some extensive debugging steps locally to find this out.
It would be good if the error and warning logging can be consistent with using logger.
The text was updated successfully, but these errors were encountered: