mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-09 17:39:04 +00:00
Remove loading messages.
This commit is contained in:
parent
52f2190346
commit
59001735b1
4 changed files with 2 additions and 4 deletions
|
@ -64,7 +64,6 @@ public class WLGitBridgeServer {
|
|||
public void start() {
|
||||
try {
|
||||
jettyServer.start();
|
||||
Util.sout();
|
||||
Util.sout(Util.getServiceName() + "-Git Bridge server started");
|
||||
Util.sout("Listening on port: " + port);
|
||||
Util.sout("Bridged to: " + writeLatexHostname);
|
||||
|
|
|
@ -20,6 +20,7 @@ public class ShutdownHook extends Thread implements LockAllWaiter {
|
|||
projectLock.lockAll();
|
||||
Util.sout("No projects to wait for.");
|
||||
Util.sout("Bye");
|
||||
Util.sout();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -38,7 +38,7 @@ public class DataStore implements CandidateSnapshotCallback {
|
|||
persistentStore = new PersistentStore(rootGitDirectory);
|
||||
List<String> excludedFromDeletion = persistentStore.getProjectNames();
|
||||
excludedFromDeletion.add(".wlgb");
|
||||
Util.deleteInDirectoryApartFrom(rootGitDirectory, excludedFromDeletion.toArray(new String[]{}));
|
||||
Util.deleteInDirectoryApartFrom(rootGitDirectory, excludedFromDeletion.toArray(new String[] {}));
|
||||
|
||||
snapshotFetcher = new SnapshotFetcher();
|
||||
resourceFetcher = new ResourceFetcher(persistentStore);
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package uk.ac.ic.wlgitbridge.writelatex.model.db.sql;
|
||||
|
||||
import uk.ac.ic.wlgitbridge.util.Util;
|
||||
import uk.ac.ic.wlgitbridge.writelatex.model.db.sql.query.GetLatestVersionForProjectSQLQuery;
|
||||
import uk.ac.ic.wlgitbridge.writelatex.model.db.sql.query.GetPathForURLInProjectSQLQuery;
|
||||
import uk.ac.ic.wlgitbridge.writelatex.model.db.sql.query.GetProjectNamesSQLQuery;
|
||||
|
@ -25,7 +24,6 @@ public class SQLiteWLDatabase {
|
|||
public SQLiteWLDatabase(File rootGitDirectory) throws SQLException, ClassNotFoundException {
|
||||
File databaseFile = new File(rootGitDirectory, "/.wlgb/wlgb.db");
|
||||
databaseFile.getParentFile().mkdirs();
|
||||
Util.sout("Loading data...");
|
||||
Class.forName("org.sqlite.JDBC");
|
||||
connection = DriverManager.getConnection("jdbc:sqlite:" + databaseFile.getAbsolutePath());
|
||||
createTables();
|
||||
|
|
Loading…
Add table
Reference in a new issue