-
-
Notifications
You must be signed in to change notification settings - Fork 262
ENH: Add python loggers #973
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 3 commits
d519cf1
f68d0ce
f5cf90d
64d32e5
2f007aa
22149db
0aa8004
1ad7f4c
de28b57
586f08a
cc2cf57
a6b7a5f
120ccd8
1e2a257
a29f05f
21b4f7d
2fb3fe3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,64 +1,68 @@ | ||
| import logging | ||
|
|
||
| logging.getLogger(__name__).addHandler(logging.NullHandler()) | ||
|
|
||
| from .control import _Controller | ||
| from .environment import Environment, EnvironmentAnalysis | ||
| from .mathutils import ( | ||
| Function, | ||
| PiecewiseFunction, | ||
| funcify_method, | ||
| reset_funcified_methods, | ||
| ) | ||
| from .motors import ( | ||
| CylindricalTank, | ||
| EmptyMotor, | ||
| Fluid, | ||
| GenericMotor, | ||
| HybridMotor, | ||
| LevelBasedTank, | ||
| LiquidMotor, | ||
| MassBasedTank, | ||
| MassFlowRateBasedTank, | ||
| Motor, | ||
| PointMassMotor, | ||
| SolidMotor, | ||
| SphericalTank, | ||
| Tank, | ||
| TankGeometry, | ||
| UllageBasedTank, | ||
| ) | ||
| from .plots.compare import Compare, CompareFlights | ||
| from .rocket import ( | ||
| AeroSurface, | ||
| AirBrakes, | ||
| Components, | ||
| EllipticalFin, | ||
| EllipticalFins, | ||
| Fin, | ||
| Fins, | ||
| FreeFormFin, | ||
| FreeFormFins, | ||
| GenericSurface, | ||
| LinearGenericSurface, | ||
| NoseCone, | ||
| Parachute, | ||
| PointMassRocket, | ||
| RailButtons, | ||
| Rocket, | ||
| Tail, | ||
| TrapezoidalFin, | ||
| TrapezoidalFins, | ||
| ) | ||
| from .sensitivity import SensitivityModel | ||
| from .sensors import Accelerometer, Barometer, GnssReceiver, Gyroscope | ||
| from .simulation import Flight, MonteCarlo, MultivariateRejectionSampler | ||
| from .stochastic import ( | ||
| CustomSampler, | ||
| StochasticAirBrakes, | ||
| StochasticEllipticalFins, | ||
| StochasticEnvironment, | ||
| StochasticFlight, | ||
| StochasticNoseCone, | ||
| StochasticParachute, | ||
| StochasticRocket, | ||
| StochasticSolidMotor, | ||
| StochasticTail, | ||
| StochasticTrapezoidalFins, | ||
| ) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you agree that these message will stop making sense here? The prints existed to separated each plot from the next one. On the other hand, if a user consumes the log without seeing the plot, it doesn't really make sense at all (i.e. reading "airfoil lift curve" doesn't make as much sense as reading "plotting airfoil lift curve") In other words, we need to rethink what we really want to display in each message within the plots module. |
Uh oh!
There was an error while loading. Please reload this page.