mirror of
https://github.com/token2/snapd.git
synced 2026-03-13 11:15:47 -07:00
BootSetup is expected to be called from program running from initramfs, and it looks at the kernel command line to check if something should be printed or not.
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
|
|
/*
|
|
* Copyright (C) 2014-2022 Canonical Ltd
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
package logger
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/snapcore/snapd/testutil"
|
|
)
|
|
|
|
func GetLogger() Logger {
|
|
lock.Lock()
|
|
defer lock.Unlock()
|
|
|
|
return logger
|
|
}
|
|
|
|
func GetLoggerFlags() int {
|
|
log, ok := GetLogger().(*Log)
|
|
if !ok {
|
|
return -1
|
|
}
|
|
|
|
return log.log.Flags()
|
|
}
|
|
|
|
func GetQuiet() bool {
|
|
log := GetLogger().(*Log)
|
|
|
|
return log.quiet
|
|
}
|
|
|
|
func ProcCmdlineMustMock(new bool) (restore func()) {
|
|
old := procCmdlineUseDefaultMockInTests
|
|
procCmdlineUseDefaultMockInTests = new
|
|
return func() {
|
|
procCmdlineUseDefaultMockInTests = old
|
|
}
|
|
}
|
|
|
|
func MockTimeNow(f func() time.Time) (restore func()) {
|
|
restore = testutil.Backup(&timeNow)
|
|
timeNow = f
|
|
return restore
|
|
}
|