blob: 9660eacbc0a00fa1a3158052bc62a444acb97513 [file] [log] [blame]
Joey Armstrong393daca2023-07-06 08:47:54 -04001//go:build !profile
Don Newton8eca4622020-02-10 16:44:48 -05002// +build !profile
3
4/*
Joey Armstrong7a9af442024-01-03 19:26:36 -05005 * Copyright 2018-2024 Open Networking Foundation (ONF) and the ONF Contributors
Don Newton8eca4622020-02-10 16:44:48 -05006
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 Agrawal31f21802020-06-12 05:38:46 +000022import "context"
23
Don Newton8eca4622020-02-10 16:44:48 -050024func realMain() {
Rohan Agrawal31f21802020-06-12 05:38:46 +000025 ctx := context.Background()
26 logger.Infoln(ctx, "NOT PROFILING")
Don Newton8eca4622020-02-10 16:44:48 -050027}