LogConfigFilePath returns the path of log-config.json
(dataStore, ns, id string)
| 156 | |
| 157 | // LogConfigFilePath returns the path of log-config.json |
| 158 | func LogConfigFilePath(dataStore, ns, id string) string { |
| 159 | return filepath.Join(dataStore, "containers", ns, id, "log-config.json") |
| 160 | } |
| 161 | |
| 162 | // LoadLogConfig loads the log-config.json for the afferrent container store |
| 163 | func LoadLogConfig(dataStore, ns, id string) (LogConfig, error) { |
no outgoing calls
no test coverage detected