mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-05-02 22:12:53 +03:00
Pull request 2358: Update all
Merge in DNS/adguard-home from upd-all to master Squashed commit of the following: commit fb5e87e0cb5617d031a2dac932304917722b1a89 Merge: af4ef937e64994c7fc
Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Fri Mar 7 18:30:39 2025 +0300 Merge branch 'master' into upd-all commit af4ef937ee9ae1046cda083a4b0cb6b41ca3dc8c Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Fri Mar 7 12:50:48 2025 +0300 all: log changes, revert trackers commitca1197dc69
Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Mar 6 19:33:24 2025 +0300 client: upd i18n commitd6aa696686
Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Mar 6 19:24:57 2025 +0300 client: upd vetted filters, companiesdb, blocked services commited6f706c8e
Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Mar 6 19:20:32 2025 +0300 ipset: add bench results commit89c1fbe257
Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Mar 6 19:14:34 2025 +0300 all: upd go, tools
This commit is contained in:
parent
64994c7fcb
commit
7f9cef948c
31 changed files with 360 additions and 471 deletions
internal/home
|
@ -599,7 +599,7 @@ func run(opts options, clientBuildFS fs.FS, done chan struct{}, sigHdlr *signalH
|
|||
sigHdlr.swapLogger(slogLogger)
|
||||
|
||||
// Print the first message after logger is configured.
|
||||
log.Info(version.Full())
|
||||
log.Info("%s", version.Full())
|
||||
log.Debug("current working directory is %s", globalContext.workDir)
|
||||
if opts.runningAsService {
|
||||
log.Info("AdGuard Home is running as a service")
|
||||
|
@ -975,7 +975,7 @@ func exitWithError() {
|
|||
func loadCmdLineOpts() (opts options) {
|
||||
opts, eff, err := parseCmdOpts(os.Args[0], os.Args[1:])
|
||||
if err != nil {
|
||||
log.Error(err.Error())
|
||||
log.Error("%s", err)
|
||||
printHelp(os.Args[0])
|
||||
|
||||
exitWithError()
|
||||
|
@ -984,7 +984,7 @@ func loadCmdLineOpts() (opts options) {
|
|||
if eff != nil {
|
||||
err = eff()
|
||||
if err != nil {
|
||||
log.Error(err.Error())
|
||||
log.Error("%s", err)
|
||||
exitWithError()
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue