Skip to content

Commit ae36019

Browse files
committed
Fix compile issue for log level
1 parent f666d2a commit ae36019

File tree

1 file changed

+1
-1
lines changed
  • PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/intellij

1 file changed

+1
-1
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/intellij/AzurePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public void runActivity(@NotNull Project project) {
9999
this.installationID = StringUtils.isNotEmpty(hasMac) ? hasMac : GetHashMac.hash(PermanentInstallationID.get());
100100
final String userAgent = String.format(USER_AGENT, PLUGIN_VERSION,
101101
TelemetryUtils.getMachieId(dataFile, message("prefVal"), message("instID")));
102-
Azure.az().config().setLogLevel(LogLevel.NONE);
102+
Azure.az().config().setLogLevel(LogLevel.NONE.name());
103103
Azure.az().config().setUserAgent(userAgent);
104104
CommonSettings.setUserAgent(userAgent);
105105

0 commit comments

Comments
 (0)