-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In progress: setup for setting the level to log at via runtime values
- Loading branch information
Showing
4 changed files
with
343 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,3 @@ | ||
module Debug_runtime = (val | ||
Minidebug_runtime.debug_flushing ~filename:"debugger_unannot_bindings" ()) | ||
let _result = | ||
let __entry_id = Debug_runtime.get_entry_id () in | ||
(); | ||
Debug_runtime.open_log ~fname:"test_debug_unannot_bindings.ml" | ||
~start_lnum:4 ~start_colnum:15 ~end_lnum:4 ~end_colnum:22 | ||
~message:"_result" ~entry_id:__entry_id ~log_level:1 `Debug; | ||
(match let a = 1 in let b = 2 in let point = (a, b) in ignore point with | ||
| _ as __res -> | ||
((); | ||
Debug_runtime.close_log ~fname:"test_debug_unannot_bindings.ml" | ||
~start_lnum:4 ~entry_id:__entry_id; | ||
__res) | ||
| exception e -> | ||
(Debug_runtime.close_log ~fname:"test_debug_unannot_bindings.ml" | ||
~start_lnum:4 ~entry_id:__entry_id; | ||
raise e)) | ||
let _result = let a = 1 in let b = 2 in let point = (a, b) in ignore point |
Oops, something went wrong.