Skip to content

Commit d3477d1

Browse files
committed
fix: logs on windows
1 parent c2f1378 commit d3477d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clion-plugin/src/main/kotlin/org/utbot/cpp/clion/plugin/client/ClientManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class ClientManager(val project: Project): Disposable {
4040
fun createRandomSequence() = (1..RANDOM_SEQUENCE_LENGTH)
4141
.joinToString("") { Random.nextInt(0, RANDOM_SEQUENCE_MAX_VALUE).toString() }
4242

43-
return "${(System.getenv("USER") ?: "unknownUser")}-${createRandomSequence()}"
43+
return "${(System.getenv("USER") ?: "user")}-${createRandomSequence()}"
4444
}
4545

4646
companion object {

0 commit comments

Comments
 (0)