Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
solo-1
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
solo-1
Commits
fd23fb37
Unverified
Commit
fd23fb37
authored
May 08, 2019
by
Liang Ding
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🎨
Fix #12777
parent
c761ca43
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/main/java/org/b3log/solo/SoloServletListener.java
src/main/java/org/b3log/solo/SoloServletListener.java
+4
-2
No files found.
src/main/java/org/b3log/solo/SoloServletListener.java
View file @
fd23fb37
...
...
@@ -44,6 +44,7 @@ import org.b3log.solo.processor.PermalinkHandler;
import
org.b3log.solo.processor.console.*
;
import
org.b3log.solo.repository.OptionRepository
;
import
org.b3log.solo.service.*
;
import
org.b3log.solo.util.Markdowns
;
import
org.b3log.solo.util.Skins
;
import
org.b3log.solo.util.Solos
;
import
org.json.JSONObject
;
...
...
@@ -95,10 +96,11 @@ public final class SoloServletListener extends AbstractServletListener {
final
String
jdbcURL
=
Latkes
.
getLocalProperty
(
"jdbc.URL"
);
final
String
os
=
System
.
getProperty
(
"os.name"
);
final
boolean
isDocker
=
Solos
.
isDocker
();
final
boolean
markdownHttpAvailable
=
Markdowns
.
MARKDOWN_HTTP_AVAILABLE
;
LOGGER
.
log
(
Level
.
INFO
,
"Solo is booting [ver="
+
VERSION
+
", servletContainer="
+
servletContextEvent
.
getServletContext
().
getServerInfo
()
+
", os="
+
os
+
", isDocker="
+
isDocker
+
",
pid="
+
Solos
.
currentPID
()
+
", runtimeDatabase="
+
runtimeDatabase
+
", runtimeMode="
+
runtimeMode
+
", jdbc.username="
+
jdbcUsername
+
", jdbc.URL="
+
jdbcURL
+
"]"
);
+
", os="
+
os
+
", isDocker="
+
isDocker
+
",
markdownHttpAvailable="
+
markdownHttpAvailable
+
", pid="
+
Solos
.
currentPID
()
+
", runtimeDatabase="
+
runtimeDatabase
+
", runtimeMode="
+
runtimeMode
+
", jdbc.username="
+
jdbcUsername
+
", jdbc.URL="
+
jdbcURL
+
"]"
);
validateSkin
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment