blob: 9660eacbc0a00fa1a3158052bc62a444acb97513 [file] [log] [blame]
Joey Armstrong03b20872024-01-12 13:03:07 -05001//go:build !profile
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -07002// +build !profile
3
4/*
Joey Armstrong03b20872024-01-12 13:03:07 -05005 * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -07006
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10
11 * http://www.apache.org/licenses/LICENSE-2.0
12
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
20package main
21
Rohan Agrawalc32d9932020-06-15 11:01:47 +000022import "context"
23
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -070024func realMain() {
Rohan Agrawalc32d9932020-06-15 11:01:47 +000025 ctx := context.Background()
26 logger.Infoln(ctx, "NOT PROFILING")
Matteo Scandoloa98f0dc2020-05-13 10:39:29 -070027}