blob: 7e3b1607a1243917018170cda3c3d1a90fea5715 [file] [log] [blame]
// Copyright 2015 Marc-Antoine Ruel. All rights reserved.
// Use of this source code is governed under the Apache License, Version 2.0
// that can be found in the LICENSE file.
// panicparse: analyzes stack dump of Go processes and simplifies it.
//
// It is mostly useful on servers will large number of identical goroutines,
// making the crash dump harder to read than strictly necessary.
package main
import (
"fmt"
"os"
"github.com/maruel/panicparse/v2/internal"
)
func main() {
if err := internal.Main(); err != nil {
fmt.Fprintf(os.Stderr, "Failed: %s\n", err)
os.Exit(1)
}
}