This repository has been archived on 2023-02-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flamenco-manager/shaman/httpserver/logging.go
T
Sybren A. Stüvel fe44a4f857 Moved Shaman code into Flamenco Manager
This Shaman code is a copy of revision 195ee4b02c715b9ec1936aa226f2cb10ea7fe32a
at https://gitlab.com/blender-institute/shaman. That repository will most
likely not see any more updates, and Shaman will become a part of Flamenco
Manager.
2019-03-12 09:41:57 +01:00

29 lines
988 B
Go

package httpserver
/* ***** BEGIN GPL LICENSE BLOCK *****
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* 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, write to the Free Software Foundation,
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* ***** END GPL LICENCE BLOCK *****
*
* (c) 2019, Blender Foundation - Sybren A. Stüvel
*/
import (
"github.com/sirupsen/logrus"
)
var packageLogger = logrus.WithField("package", "shaman/httpserver")