File tree 1 file changed +5
-1
lines changed
Coder Desktop/VPNLib/FileSync
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 {
65
65
try await connect ( )
66
66
67
67
state = . running
68
+ logger. info ( " mutagen daemon started " )
68
69
}
69
70
70
71
private func connect( ) async throws {
@@ -80,7 +81,9 @@ public class MutagenDaemon: FileSyncDaemon {
80
81
eventLoopGroup: group!
81
82
)
82
83
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
+ )
84
87
} catch {
85
88
logger. error ( " Failed to connect to gRPC: \( error) " )
86
89
try await cleanupGRPC ( )
@@ -124,6 +127,7 @@ public class MutagenDaemon: FileSyncDaemon {
124
127
let process = Process ( )
125
128
process. executableURL = mutagenPath
126
129
process. arguments = [ " daemon " , " run " ]
130
+ logger. info ( " setting mutagen data directory: \( self . mutagenDataDirectory. path, privacy: . public) " )
127
131
process. environment = [
128
132
" MUTAGEN_DATA_DIRECTORY " : mutagenDataDirectory. path,
129
133
]
You can’t perform that action at this time.
0 commit comments