Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
bin
y
# Binaries for programs and plugins
*.exe
*.exe~
Expand Down
2 changes: 1 addition & 1 deletion collections/set/set_suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ import (
func TestSet(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Set Suite")
}
}
6 changes: 3 additions & 3 deletions context/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
//
// ctx := context.NewContext(context.Background())
// ctx.Infof("Processing request %s", requestID)
//
//
// // Enable debug logging
// debugCtx := ctx.WithDebug()
// debugCtx.Debugf("Detailed information: %v", details)
//
//
// // Start a traced operation
// ctx, span := ctx.StartSpan("database-query")
// defer span.End()
Expand Down Expand Up @@ -110,7 +110,7 @@ func WithLogger(log logger.Logger) ContextOptions {
//
// // Basic context with defaults
// ctx := NewContext(context.Background())
//
//
// // Context with custom configuration
// ctx := NewContext(
// context.Background(),
Expand Down
Loading
Loading