Skip to content

Commit d4c57f6

Browse files
committed
Renames the tracing methods for tracing exceptions
1 parent 7a699e1 commit d4c57f6

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

packages/Babylonian-Core.package/BPTracer.class/instance/traceBlock.forProbe..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
private
22
traceBlock: aBlock forProbe: aProbeId
3-
3+
44
^ [#bpInstrumented withLayerDo: aBlock]
55
on: Error
66
do: [:e |
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
private
2+
traceError: anError
3+
4+
trace traceException: anError

packages/Babylonian-Core.package/BPTracer.class/instance/traceException..st

Lines changed: 0 additions & 4 deletions
This file was deleted.

packages/Babylonian-Core.package/BPTracer.class/methodProperties.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
"setExample:" : "pre 5/8/2019 16:29",
1717
"trace:through:forProbe:inContext:" : "pre 9/29/2020 16:15",
1818
"traceAssignment:previousValues:forProbe:inContext:" : "pre 9/29/2020 16:13",
19-
"traceBlock:forProbe:" : "pre 8/17/2020 10:15",
20-
"traceException:" : "pre 8/17/2020 10:15" } }
19+
"traceBlock:forProbe:" : "pre 10/12/2020 12:32",
20+
"traceError:" : "pre 10/12/2020 11:16" } }
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
*Babylonian-Core
22
bpTraceWith: tracer
3-
3+
44
#bpInstrumented withLayerDo: [
55
BPActiveTracer value: tracer during: [
66
self
77
on: Error, Halt
88
do: [:e |
99
#bpInstrumented withoutLayerDo: [
10-
BPActiveTracer value traceException: e.
10+
BPActiveTracer value traceError: e.
1111
BPExampleExecutionInterrupted signal: tracer completeTrace]]]].
1212
^ tracer completeTrace

packages/Babylonian-Core.package/BlockClosure.extension/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"bpTraceAsyncForExample:notifying:" : "pre 8/17/2020 10:21",
66
"bpTraceForExample:" : "pre 9/29/2020 16:44",
77
"bpTraceForExample:andHaltAt:" : "pre 9/29/2020 16:32",
8-
"bpTraceWith:" : "pre 9/22/2020 15:15" } }
8+
"bpTraceWith:" : "pre 10/12/2020 11:17" } }

0 commit comments

Comments
 (0)