You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Agent/NewRelic/Agent/Core/Config/ConfigurationLoader.cs
+8-8
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@
4
4
usingNewRelic.Agent.Core.Events;
5
5
usingNewRelic.Agent.Core.Utilities;
6
6
usingNewRelic.Core;
7
+
usingNewRelic.Agent.Core.Configuration;
7
8
usingNewRelic.Core.Logging;
8
9
usingNewRelic.SystemInterfaces;
9
10
usingSystem;
@@ -15,7 +16,6 @@
15
16
usingSystem.Xml.Serialization;
16
17
#if NETSTANDARD2_0
17
18
usingSystem.Reflection;
18
-
usingNewRelic.Agent.Core.Configuration;
19
19
#endif
20
20
21
21
namespaceNewRelic.Agent.Core.Config
@@ -139,7 +139,7 @@ public static string GetAgentConfigFileName()
139
139
if(fileName!=null)
140
140
returnfileName;
141
141
142
-
thrownewException(string.Format("Could not find {0} in NewRelic.ConfigFile path, application root, New Relic home directory, or working directory.",NewRelicConfigFileName));
142
+
thrownewException(string.Format("Could not find {0} in {1} path, application root, New Relic home directory, or working directory.",NewRelicConfigFileName,Constants.AppSettingsConfigFile));
0 commit comments