Error handling & logging for broker
[ealt-edge.git] / mecm / mepm / applcm / broker / cmd / broker / main.go
1 /*
2  * Copyright 2020 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package main
18
19 import (
20         "broker/pkg/handlers"
21         "broker/pkg/util"
22         "github.com/sirupsen/logrus"
23         "os"
24 )
25
26 const (
27         //logFile = "/go/release/logfile"
28         logFile = "/home/root1/code/akraino/ealt-edge/mecm/mepm/applcm/broker/cmd/broker/logfile"
29         loggerLevel = logrus.InfoLevel
30         applcmAddress = "0.0.0.0:8081"
31 )
32
33 func main() {
34         // Prepare logger
35         file, err := os.Create(logFile)
36         if err != nil {
37                 logrus.Fatal(err)
38         }
39         defer file.Close()
40
41         var logger = util.GetLogger(logFile, loggerLevel, file)
42
43         handler := &handlers.Handlers{}
44         handler.Initialize(logger)
45         handler.Run(applcmAddress)
46 }