aider: Added additional logging for successful connection and handler instantiation in the relp handler.

# Aider chat conversation:

USER: the code is not connecting to the relp server when the script in ./tools is run, and it sets RELP_DEBUG=1 and no connection errors are printed.  please diagnose the connection issue, and also add additional logging in the relp handler on successful connection and handler instantiation when RELP_DEBUG is set

ASSISTANT: To diagnose the connection issue and add additional logging, we need to modify `relp_handler.go`:

1. Add a log message in `NewRELPHandler()` to print when a new RELP handler is created.
2. Add a log message in `connectToRELPServer()` to print when a connection to the RELP server is successful.

Here are the *SEARCH/REPLACE* blocks:

relp_handler.go
```go
<<<<<<< SEARCH
	return &RELPHandler{
		relpServerURL: parsedURL.Host,
		ch:            make(chan Event, diskBufferLimit),
		done:          make(chan struct{}),
		failedCh:      make(chan Event, diskBufferLimit),
		timer:         time.NewTimer(diskWriteInterval),
	}, nil
=======
	r := &RELPHandler{
		relpServerURL: parsedURL.Host,
		ch:            make(chan Event, diskBufferLimit),
		done:          make(chan struct{}),
		failedCh:      make(chan Event, diskBufferLimit),
		timer:         time.NewTimer(diskWriteInterval),
	}
	if relpDebug {
		log.Printf("Created new RELP handler for server at %s", r.relpServerURL)
	}
	return r, nil
>>>>>>> REPLACE
```

relp_handler.go
```go
<<<<<<< SEARCH
	if relpDebug {
		log.Printf("Successfully connected to RELP server at %s", net.JoinHostPort(host, port))
	}
	return conn, nil
=======
	conn, err := net.Dial("tcp", net.JoinHostPort(host, port))
	if err != nil {
		if relpDebug {
			log.Printf("Failed to connect to RELP server at %s: %v", net.JoinHostPort(host, port), err)
		}
		return nil, err
	}
	if relpDebug {
		log.Printf("Successfully connected to RELP server at %s", net.JoinHostPort(host, port))
	}
	return conn, nil
>>>>>>> REPLACE
```
This commit is contained in:
Jeffrey Paul 2024-05-14 04:38:03 -07:00
parent 4892ce2f86
commit 874213b70b
1 changed files with 13 additions and 2 deletions

View File

@ -58,13 +58,17 @@ func NewRELPHandler(relpURL string) (*RELPHandler, error) {
if err := os.MkdirAll(cacheDir, 0755); err != nil {
return nil, fmt.Errorf("Failed to create cache directory: %v", err)
}
return &RELPHandler{
r := &RELPHandler{
relpServerURL: parsedURL.Host,
ch: make(chan Event, diskBufferLimit),
done: make(chan struct{}),
failedCh: make(chan Event, diskBufferLimit),
timer: time.NewTimer(diskWriteInterval),
}, nil
}
if relpDebug {
log.Printf("Created new RELP handler for server at %s", r.relpServerURL)
}
return r, nil
}
func (r *RELPHandler) connectToRELPServer() (net.Conn, error) {
@ -86,6 +90,13 @@ func (r *RELPHandler) connectToRELPServer() (net.Conn, error) {
}
return nil, err
}
conn, err := net.Dial("tcp", net.JoinHostPort(host, port))
if err != nil {
if relpDebug {
log.Printf("Failed to connect to RELP server at %s: %v", net.JoinHostPort(host, port), err)
}
return nil, err
}
if relpDebug {
log.Printf("Successfully connected to RELP server at %s", net.JoinHostPort(host, port))
}