Skip to content
This repository was archived by the owner on Oct 8, 2020. It is now read-only.

Compat unlynx #9

Merged
merged 13 commits into from
May 20, 2019
Merged

Compat unlynx #9

merged 13 commits into from
May 20, 2019

Conversation

JoaoAndreSa
Copy link
Contributor

See closed pull request #8

@JoaoAndreSa JoaoAndreSa requested a review from mickmis May 1, 2019 15:10
@ineiti
Copy link
Contributor

ineiti commented May 20, 2019

Just a general question: why do you put log.Error in all the error handlers? Wouldn't it be better to put the log.Error in the caller of the method?

@JoaoAndreSa
Copy link
Contributor Author

@ineiti I tried to add log.Error in a way so that it would be easy to debug. The problem of what I had before (where I just threw every error and only printed at the uppermost function) was that then I had no idea where the error came from. :(

@ineiti
Copy link
Contributor

ineiti commented May 20, 2019

I had no idea where the error came from. :(

Yes, I had the same. As an experiment, when I threw an existing error, I first had it pass through something like:

func Erret(err error) error {
	if err == nil {
		return nil
	}
	pc, _, line, _ := runtime.Caller(1)
	errStr := err.Error()
	if strings.HasPrefix(errStr, "Erret") {
		errStr = "\n\t" + errStr
	}
	return fmt.Errorf("Erret at %s: %d -> %s", runtime.FuncForPC(pc).Name(), line, errStr)
}

and then you could see the 'trace' of where the error comes from. But I'm sure there is a better way for that...

@mickmis mickmis merged commit 7273e0c into dev May 20, 2019
@mickmis mickmis deleted the compatUnlynx branch May 20, 2019 13:50
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants