Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
auto-tx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vamp
auto-tx
Commits
2ce97b73
Commit
2ce97b73
authored
7 years ago
by
Niko Ehrenfeuchter
Browse files
Options
Downloads
Patches
Plain Diff
Adjust log level and method docstring.
parent
2b8ff9f0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ATxCommon/SystemChecks.cs
+2
-2
2 additions, 2 deletions
ATxCommon/SystemChecks.cs
with
2 additions
and
2 deletions
ATxCommon/SystemChecks.cs
+
2
−
2
View file @
2ce97b73
...
...
@@ -15,7 +15,7 @@ namespace ATxCommon
/// <summary>
/// Get the available physical memory in MB.
/// </summary>
/// <returns>
The a
vailable physical memory in MB or -1 in case of an error.</returns>
/// <returns>
A
vailable physical memory in MB or -1 in case of an error.</returns>
public
static
long
GetFreeMemory
()
{
try
{
var
searcher
=
...
...
@@ -26,7 +26,7 @@ namespace ATxCommon
}
}
catch
(
Exception
ex
)
{
Log
.
Warn
(
"Error in GetFreeMemory: {0}"
,
ex
.
Message
);
Log
.
Trace
(
"Error in GetFreeMemory: {0}"
,
ex
.
Message
);
}
return
-
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment