Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
esm-architecture-analysis-replication-package
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oceandsl
esm-architecture-analysis-replication-package
Commits
57e41436
Commit
57e41436
authored
2 years ago
by
Reiner Jung
Browse files
Options
Downloads
Patches
Plain Diff
Updated tools.
parent
48bd5fde
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
models/mitgcm/compare-models.sh
+4
-9
4 additions, 9 deletions
models/mitgcm/compare-models.sh
models/mitgcm/logback.groovy
+0
-32
0 additions, 32 deletions
models/mitgcm/logback.groovy
models/mitgcm/logback.xml
+15
-0
15 additions, 0 deletions
models/mitgcm/logback.xml
with
19 additions
and
41 deletions
models/mitgcm/compare-models.sh
+
4
−
9
View file @
57e41436
...
@@ -16,18 +16,13 @@ checkDirectory "Result directory" "${OPTIMIZATION_DATA}"
...
@@ -16,18 +16,13 @@ checkDirectory "Result directory" "${OPTIMIZATION_DATA}"
# main
# main
for
I
in
jss-jobs-22-mitgcm_tutorial_barotropic_gyre_combined_iface-map.job
\
for
JOB
in
`
find
"
${
OPTIMIZATION_DATA
}
/jss"
*
-name
'*mitgcm*job'
`
;
do
jss-jobs-23-mitgcm_tutorial_barotropic_gyre_combined_map.job
\
BASENAME
=
`
basename
"
${
JOB
}
"
`
jss-jobs-28-mitgcm_tutorial_barotropic_gyre_dynamic_iface-map.job
\
jss-jobs-29-mitgcm_tutorial_barotropic_gyre_dynamic_map.job
\
jss-jobs-34-mitgcm_tutorial_barotropic_gyre_static_iface-map.job
\
jss-jobs-35-mitgcm_tutorial_barotropic_gyre_static_map.job
;
do
information
"----------------------------------------"
information
"----------------------------------------"
information
$
I
information
$
BASENAME
information
"----------------------------------------"
information
"----------------------------------------"
export
JOB_DIRECTORY
=
"
${
OPTIMIZATION_DATA
}
/
$I
"
export
JOB_DIRECTORY
=
"
${
JOB
}
"
checkDirectory
"job directory"
"
${
JOB_DIRECTORY
}
"
checkDirectory
"job directory"
"
${
JOB_DIRECTORY
}
"
...
...
This diff is collapsed.
Click to expand it.
models/mitgcm/logback.groovy
deleted
100644 → 0
+
0
−
32
View file @
48bd5fde
import
ch.qos.logback.classic.filter.ThresholdFilter
import
ch.qos.logback.core.filter.EvaluatorFilter
import
ch.qos.logback.classic.boolex.GEventEvaluator
import
static
ch
.
qos
.
logback
.
core
.
spi
.
FilterReply
.
DENY
import
static
ch
.
qos
.
logback
.
core
.
spi
.
FilterReply
.
NEUTRAL
appender
(
"FILE"
,
FileAppender
)
{
filter
(
ThresholdFilter
)
{
level
=
INFO
}
file
=
"kieker.log"
append
=
true
encoder
(
PatternLayoutEncoder
)
{
pattern
=
"%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n"
}
}
appender
(
"STDOUT"
,
ConsoleAppender
)
{
filter
(
ThresholdFilter
)
{
level
=
INFO
}
encoder
(
PatternLayoutEncoder
)
{
pattern
=
"%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n"
}
target
=
"System.out"
}
root
(
DEBUG
,
[
"STDOUT"
,
"FILE"
])
This diff is collapsed.
Click to expand it.
models/mitgcm/logback.xml
0 → 100644
+
15
−
0
View file @
57e41436
<configuration>
<appender
name=
"STDOUT"
class=
"ch.qos.logback.core.ConsoleAppender"
>
<!-- encoders are assigned the type
ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
<encoder>
<!-- pattern>%d{HH:mm:ss.SSS} [%thread] %-5level- %msg%n</pattern -->
<pattern>
%-5level- %msg%n
</pattern>
</encoder>
</appender>
<root
level=
"info"
>
<appender-ref
ref=
"STDOUT"
/>
</root>
</configuration>
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