Yashish Dua

Results 17 comments of Yashish Dua

I would love to contribute!

Checking in if this needs more discussion or ready to get into the implementation state?

Perfect! Picking this up then.

@rhcarvalho You can have a look now!

@rhcarvalho Any update on this?

@rhcarvalho Is this issue open to pick up? I have contributed in the early days of this repo.

@rhcarvalho Alright! Would get back here soon.

@rhcarvalho I was going through the code base and Unified API principles and thinking if we can have an optional `level` argument for the `CaptureException` method. What do you think?...

@rhcarvalho > There are no "optional arguments" in Go. The closest to that are [_Variadic Functions_](https://golang.org/ref/spec#Function_types). > > If we make a change like this: > > ```diff > -func...

```go type exceptionLevel struct { level Level } func createException(exception error, level *exceptionLevel) {} ``` Something of this sort, with better names.