Skip to content

Commit b779eed

Browse files
committed
Remove printfn
1 parent 4f8e878 commit b779eed

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,13 @@ The documentation is [available here](https://demystifyfp.gitbook.io/fstoolkit-e
1717
* The main resource as to learning this style of programming [Railway Oriented Programming](https://fsharpforfunandprofit.com/rop/)
1818
* However Result isn't a panacea, see what pitfalls and where you shouldn't use `Result`. [In defense of Exceptions: Throw (away) your Result](https://skillsmatter.com/skillscasts/17243-in-defense-of-exceptions-throw-away-your-result)
1919

20-
2120
## Builds
2221

2322
GitHub Actions |
2423
:---: |
2524
[![GitHub Actions](https://github.com/demystifyfp/FsToolkit.ErrorHandling/workflows/Build%20master/badge.svg)](https://github.com/demystifyfp/FsToolkit.ErrorHandling/actions?query=branch%3Amaster) |
2625
[![Build History](https://buildstats.info/github/chart/demystifyfp/FsToolkit.ErrorHandling?branch=master)](https://github.com/demystifyfp/FsToolkit.ErrorHandling/actions?query=branch%3Amaster) |
2726

28-
2927
### NuGet
3028

3129
| Package name | Release | Prelease
@@ -36,7 +34,6 @@ GitHub Actions |
3634
| FsToolkit.ErrorHandling.AsyncSeq | [![NuGet](https://buildstats.info/nuget/FsToolkit.ErrorHandling.AsyncSeq)](https://www.nuget.org/packages/FsToolkit.ErrorHandling.AsyncSeq) | [![NuGet](https://buildstats.info/nuget/FsToolkit.ErrorHandling.AsyncSeq?includePreReleases=true)](https://www.nuget.org/packages/FsToolkit.ErrorHandling.AsyncSeq/absoluteLatest)
3735
| FsToolkit.ErrorHandling.IcedTasks | [![NuGet](https://buildstats.info/nuget/FsToolkit.ErrorHandling.IcedTasks)](https://www.nuget.org/packages/FsToolkit.ErrorHandling.IcedTasks) | [![NuGet](https://buildstats.info/nuget/FsToolkit.ErrorHandling.IcedTasks?includePreReleases=true)](https://www.nuget.org/packages/FsToolkit.ErrorHandling.IcedTasks/absoluteLatest)
3836

39-
4037
### Developing locally
4138

4239
#### Requirements
@@ -85,8 +82,6 @@ let login (username: string) (password: string) : Async<Result<AuthToken, LoginE
8582
}
8683
```
8784

88-
## Sponsor(s):
85+
## Sponsor(s)
8986

9087
<a href="https://www.ajira.tech"><img src="./Ajira-logo.png" alt="Ajira Technologies, India" width="200" /></a>
91-
92-

src/FsToolkit.ErrorHandling.IcedTasks/CancellableTaskResultCE.fs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ module CancellableTaskResultCE =
383383
match savedExn with
384384
| null -> ()
385385
| exn ->
386-
printfn "%A" exn
386+
// printfn "%A" exn
387387
sm.Data.MethodBuilder.SetException exn
388388

389389
member _.SetStateMachine(sm, state) =
@@ -419,7 +419,7 @@ module CancellableTaskResultCE =
419419
match __stack_exn with
420420
| null -> ()
421421
| exn ->
422-
printfn "%A" exn
422+
// printfn "%A" exn
423423
sm.Data.MethodBuilder.SetException exn
424424
//-- RESUMABLE CODE END
425425
))
@@ -475,7 +475,7 @@ module CancellableTaskResultCE =
475475
with
476476
| exn ->
477477

478-
printfn "%A" exn
478+
// printfn "%A" exn
479479
sm.Data.MethodBuilder.SetException exn
480480
//-- RESUMABLE CODE END
481481
))

0 commit comments

Comments
 (0)