view pkg/misc/warn.go @ 4082:419f28898db0

Added time zones to import queue tables.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 25 Jul 2019 16:45:07 +0200
parents 6e748f31777a
children
line wrap: on
line source

// This is Free Software under GNU Affero General Public License v >= 3.0
// without warranty, see README.md and license for details.
//
// SPDX-License-Identifier: AGPL-3.0-or-later
// License-Filename: LICENSES/AGPL-3.0.txt
//
// Copyright (C) 2019 by via donau
//   – Österreichische Wasserstraßen-Gesellschaft mbH
// Software engineering by Intevation GmbH
//
// Author(s):
//  * Sascha L. Teichmann <sascha.teichmann@intevation.de>

package misc

type WarningLimiter struct {
	Log         func(format string, args ...interface{})
	MaxWarnings int
	Warnings    int
}

func (w *WarningLimiter) Warn(format string, args ...interface{}) {
	if w.Warnings++; w.Warnings <= w.MaxWarnings {
		w.Log(format, args...)
	}
}

func (w *WarningLimiter) Close() {
	if w.Warnings > w.MaxWarnings {
		w.Log("Too many warnings. %d ignored.", w.Warnings-w.MaxWarnings)
	}
}