Skip to content

Commit

Permalink
fix iota (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
migara authored Sep 16, 2024
1 parent 49c1d03 commit f8ad8bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/pango/logging.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ const (
LogCategoryCurl
LogCategoryAll = LogCategoryPango | LogCategoryOp | LogCategorySend |
LogCategoryReceive | LogCategoryCurl
// Make sure that LogCategorySensitive is always last, explicitly set to 1 << 32
LogCategorySensitive LogCategory = 1 << 32
// Make sure that LogCategorySensitive is always last, explicitly set to 1 << 16
LogCategorySensitive LogCategory = 1 << 16
)

var logCategoryToString = map[LogCategory]string{
Expand Down

0 comments on commit f8ad8bc

Please sign in to comment.