File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Coder Desktop/VPNLib/FileSync Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ public class MutagenDaemon: FileSyncDaemon {
6565 try await connect ( )
6666
6767 state = . running
68+ logger. info ( " mutagen daemon started " )
6869 }
6970
7071 private func connect( ) async throws {
@@ -80,7 +81,9 @@ public class MutagenDaemon: FileSyncDaemon {
8081 eventLoopGroup: group!
8182 )
8283 client = Daemon_DaemonAsyncClient ( channel: channel!)
83- logger. info ( " Successfully connected to mutagen daemon via gRPC " )
84+ logger. info (
85+ " Successfully connected to mutagen daemon, socket: \( self . mutagenDaemonSocket. path, privacy: . public) "
86+ )
8487 } catch {
8588 logger. error ( " Failed to connect to gRPC: \( error) " )
8689 try await cleanupGRPC ( )
@@ -124,6 +127,7 @@ public class MutagenDaemon: FileSyncDaemon {
124127 let process = Process ( )
125128 process. executableURL = mutagenPath
126129 process. arguments = [ " daemon " , " run " ]
130+ logger. info ( " setting mutagen data directory: \( self . mutagenDataDirectory. path, privacy: . public) " )
127131 process. environment = [
128132 " MUTAGEN_DATA_DIRECTORY " : mutagenDataDirectory. path,
129133 ]
You can’t perform that action at this time.
0 commit comments